:root {
  --color-primary: #3d4af2;
  --color-secondary: #00d6c9;
  --color-dark: #090936;
  --color-light: #f6f8ff;
  --color-text: #20223c;
  --container-width: min(1120px, 92vw);
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--color-text);
  background: radial-gradient(circle at 12% 8%, rgba(0, 214, 201, 0.08), transparent 42%),
    radial-gradient(circle at 82% 0%, rgba(79, 104, 255, 0.08), transparent 48%),
    linear-gradient(180deg, #f4f7ff 0%, #ffffff 38%, #f7f9ff 100%);
  position: relative;
  min-height: 100vh;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.32);
  z-index: 30;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.42);
}

.whatsapp-float svg {
  width: 1.9rem;
  height: 1.9rem;
  fill: currentColor;
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 3.5rem;
    height: 3.5rem;
    right: 1rem;
    bottom: 1rem;
  }

  .whatsapp-float svg {
    width: 1.6rem;
    height: 1.6rem;
  }
}

body::before {
  content: '';
  position: fixed;
  inset: -240px auto auto -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 214, 201, 0.16) 0%, rgba(0, 214, 201, 0) 70%);
  z-index: -1;
  filter: blur(0px);
}

body::after {
  content: '';
  position: fixed;
  inset: auto -280px -300px auto;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 74, 242, 0.15) 0%, rgba(61, 74, 242, 0) 70%);
  z-index: -1;
  filter: blur(0px);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(6, 8, 40, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.logo img {
  height: 42px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

.site-header a {
  color: rgba(255, 255, 255, 0.9);
}

.main-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #4ef6e8;
  transform: translateY(-2px);
}

.main-nav .cta {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(78, 246, 232, 0.85), rgba(79, 104, 255, 0.95));
  color: #fff;
  box-shadow: 0 6px 16px rgba(61, 74, 242, 0.38);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.3rem;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding: 6.5rem 0 5.5rem;
  background:
    linear-gradient(145deg, rgba(9, 5, 60, 0.78) 0%, rgba(10, 5, 86, 0.7) 42%, rgba(12, 9, 110, 0.68) 100%),
    radial-gradient(circle at 6% 12%, rgba(0, 214, 201, 0.26), rgba(0, 214, 201, 0) 55%),
    #0e0837;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.hero::before {
  width: 360px;
  height: 360px;
  background: rgba(0, 214, 201, 0.7);
  top: -120px;
  right: 18%;
}

.hero::after {
  width: 480px;
  height: 480px;
  background: rgba(61, 74, 242, 0.7);
  bottom: -220px;
  left: -120px;
}

.hero .container {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.hero-content {
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
}

.hero-content h1 {
  margin: 2rem 0 1.5rem;
  font-size: clamp(2.25rem, 2.6vw + 1.8rem, 3.65rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-content h1 span {
  display: inline-block;
  background: linear-gradient(120deg, #4ef6e8, #79a9ff 55%, #b57bff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #00d6c9, #3d4af2);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 214, 201, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-button:hover,
.hero-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(61, 74, 242, 0.35);
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-secondary:hover,
.hero-secondary:focus {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-graphic {
  position: relative;
  width: 100%;
  min-height: 460px;
  border-radius: 42px;
  background: linear-gradient(160deg, rgba(61, 74, 242, 0.8), rgba(0, 214, 201, 0.45));
  box-shadow: 0 30px 80px rgba(4, 5, 33, 0.4);
  overflow: hidden;
}

.hero-graphic::before {
  content: '';
  position: absolute;
  inset: 18%;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0.6;
}

.hero-graphic::after {
  content: '';
  position: absolute;
  top: 8%;
  right: -10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(0px);
  opacity: 0.5;
}

.hero-orb {
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  opacity: 0.65;
}

.hero-card {
  position: absolute;
  top: 18%;
  left: 10%;
  right: 10%;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 2rem;
  border-radius: 28px;
  background: rgba(5, 8, 38, 0.75);
  box-shadow: 0 18px 48px rgba(5, 8, 38, 0.55);
  backdrop-filter: blur(12px);
}

.hero-card img {
  width: 160px;
}

.hero-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.hero-card-body span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-highlights {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 48px rgba(5, 8, 38, 0.42);
  min-height: 170px;
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(0, 214, 201, 0.9), rgba(61, 74, 242, 0.65));
  opacity: 0.9;
}

.highlight-card::after {
  content: '';
  position: absolute;
  inset: auto 1.4rem 1.2rem 1.4rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 214, 201, 0.7), rgba(61, 74, 242, 0.7));
  opacity: 0.85;
}

.highlight-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
  color: #fff;
}

.highlight-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  font-size: 0.98rem;
}

.section-badge {
  text-transform: lowercase;
  color: var(--color-secondary);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.about {
  padding: 5rem 0;
  background: #ffffff;
}

.about-content {
  max-width: 640px;
}

.about h2 {
  font-size: clamp(2rem, 2vw + 1.4rem, 3rem);
  margin-bottom: 1.5rem;
}

.about p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.ally {
  padding: 3rem 0;
  background: linear-gradient(92deg, #030220, #0b0550 60%, #12096d);
  color: #fff;
  text-align: center;
}

.ally p {
  font-size: clamp(1.2rem, 1.6vw + 1rem, 1.9rem);
  line-height: 1.6;
  font-weight: 500;
}

.ally span {
  color: var(--color-secondary);
}

.value {
  padding: 5rem 0;
  background: #ffffff;
  text-align: center;
}

.value h2 {
  font-size: clamp(2rem, 2vw + 1.4rem, 3rem);
  margin-bottom: 1rem;
}

.value p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 auto 1.5rem;
  max-width: 780px;
}

.value strong {
  color: var(--color-primary);
}

.benefits {
  padding: 5rem 0;
  background: var(--color-light);
}

.benefits h2 {
  text-align: center;
  font-size: clamp(2rem, 2vw + 1.4rem, 3rem);
  margin-bottom: 3rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.card {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: 22px;
  border: 2px solid rgba(61, 74, 242, 0.2);
  background: #fff;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 12px 32px rgba(12, 24, 96, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(12, 24, 96, 0.15);
}

.card span {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-secondary);
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.5;
}

.values {
  padding: 5rem 0;
  background: linear-gradient(120deg, rgba(0, 214, 201, 0.12), rgba(61, 74, 242, 0.08));
}

.values .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.values h2 {
  font-size: clamp(2rem, 2vw + 1.4rem, 2.8rem);
  margin-bottom: 2rem;
}

.values ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2rem;
}

.values li h3 {
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.values li p {
  line-height: 1.7;
  margin: 0;
}

.values-image {
  position: relative;
  min-height: 360px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(61, 74, 242, 0.2));
  overflow: hidden;
}

.values-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/tipo.jpeg') center/cover;
  filter: grayscale(10%) brightness(0.78);
}

.values-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 1, 53, 0.72), rgba(61, 74, 242, 0.35));
}

.site-footer {
  background: #f6f7ff;
  color: var(--color-dark);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 3.5rem 0 2.5rem;
  align-items: center;
}

.cta-block p {
  font-size: clamp(1.2rem, 1.4vw + 1rem, 1.8rem);
  margin-bottom: 1rem;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #3d4af2, #7a52ff);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(61, 74, 242, 0.3);
}

.contact-info {
  display: grid;
  gap: 0.6rem;
  font-weight: 500;
}

.footer-bottom {
  background: #0b0536;
  color: #fff;
  padding: 1.8rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.footer-logo img {
  width: 160px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.8;
}

.socials {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
}

.socials svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.socials a:hover svg,
.socials a:focus svg {
  opacity: 1;
}

@media (max-width: 960px) {
  .hero .container,
  .values .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-graphic {
    order: 1;
    min-height: 380px;
  }

  .hero-card {
    left: 12%;
    right: 12%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-highlights {
    margin-top: 2.2rem;
  }

  .hero-text,
  .about-content,
  .value p {
    margin-left: auto;
    margin-right: auto;
  }

  .values-info {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .site-header .container {
    padding: 0.75rem 0;
  }

  .main-nav {
    position: fixed;
    inset: 70px 1.5rem auto;
    right: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(8, 10, 60, 0.96);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(5, 8, 38, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav .cta {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
}

@media (max-width: 640px) {
  :root {
    --container-width: min(92vw, 640px);
  }

  .hero {
    padding: 5rem 0 4rem;
  }

  .hero-graphic {
    min-height: 320px;
  }

  .hero-card {
    left: 10%;
    right: 10%;
    padding: 1.6rem;
  }

  .hero-card img {
    width: 130px;
  }

  .values-image {
    min-height: 280px;
  }

  .site-footer .container {
    padding-top: 2.5rem;
  }

  .cta-block p {
    font-size: 1.4rem;
  }

  .socials {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-button,
  .cta-link {
    width: 100%;
    justify-content: center;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
