/* =========================
  Anfitrite Landing — styles.css
  ✅ Mobile-first
  ✅ Glassmorphism + modern gradients
  ✅ Clean spacing
  ✅ Easy theming via CSS variables
========================= */

:root{
  /* --- Brand colors (edita aqui) --- */
  --bg: #070a14;
  --surface: rgba(255,255,255,.08);
  --surface-2: rgba(255,255,255,.12);
  --border: rgba(255,255,255,.14);
  --text: #0f172a;
  --muted: #334155;

  --primaryA: #7c3aed;   /* violeta */
  --primaryB: #22d3ee;   /* cyan */
  --accent:   #34d399;   /* green */

  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;

  --container: 1120px;

  --ease: cubic-bezier(.2,.8,.2,1);

  /* --- Ocean background palette (cambia aqui los colores del cielo) --- */
  --sky-top: #fbcfe8;     /* Cielo rosado claro (arriba) */
  --sky-mid: #f9a8d4;     /* Rosa suave */
  --sky-soft: #7dd3fc;    /* Azul cielo */
  --sky-bottom: #38bdf8;  /* Azul mar */
  --sky-end: #1e3a8a;     /* Toque oscuro final (abajo del todo) */
  --wave-c1: rgba(56,189,248,.35);
  --wave-c2: rgba(14,165,233,.30);
  --wave-c3: rgba(6,182,212,.25);

  /* --- Wave speed controls (cambia aquI la velocidad de olas) --- */
  --wave-speed-1: 25s;
  --wave-speed-2: 18s;
  --wave-speed-3: 14s;
  --wave-speed-4: 12s;
}

*{ box-sizing: border-box; }
/* Para evitar scroll lateral en movil y desktop:
   mantén overflow-x hidden en html y body si usas drawers off-canvas. */
html, body{
  overflow-x: hidden;
}
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  /* Ajuste del gradiente:
     - Sube/baja porcentajes para mover el horizonte.
     - Sustituye variables por hex directos si quieres pruebas rapidas. */
  background: linear-gradient(
    180deg,
    var(--sky-top) 0%,
    var(--sky-mid) 25%,
    var(--sky-soft) 55%,
    var(--sky-bottom) 80%,
    var(--sky-end) 100%
  );
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
}

img{ max-width: 100%; display:block; }
a{ color: inherit; text-decoration: none; }
button, input, select, textarea{ font: inherit; }

/* =========================
  Layout helpers
========================= */
.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section{
  padding: 86px 0;
  position: relative;
}

.section--alt{
  padding: 92px 0;
}

.section__head{
  max-width: 760px;
  margin-bottom: 28px;
}

.section__head h2{
  margin: 0 0 10px 0;
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem);
  letter-spacing: -0.02em;
}

.muted{ color: var(--muted); }
.small{ font-size: .92rem; }
.fineprint{ font-size: .9rem; color: #475569; }

/* =========================
  Ocean background (SVG waves)
========================= */
.ocean-background{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  /* Mantener sincronizado con body para que el mar y las olas se integren */
  background: linear-gradient(
    180deg,
    var(--sky-top) 0%,
    var(--sky-mid) 25%,
    var(--sky-soft) 55%,
    var(--sky-bottom) 80%,
    var(--sky-end) 100%
  );
}

.ocean{
  position: absolute;
  inset: 0;
}

.waves{
  position: absolute;
  left: -25%;
  bottom: -2px;
  width: 150%;
  height: clamp(170px, 34vh, 390px);
  transform: translate3d(0, var(--wave-parallax, 0px), 0);
  will-change: transform;
}

.wave-layer{
  --wave-y: 0px;
  transform-origin: center bottom;
  will-change: transform, opacity;
  animation-name: waveMove;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.wave-layer:nth-of-type(1){
  fill: var(--wave-c1);
  opacity: .58;
  animation-duration: var(--wave-speed-1);
}

.wave-layer:nth-of-type(2){
  --wave-y: 8px;
  fill: var(--wave-c2);
  opacity: .48;
  animation-duration: var(--wave-speed-2);
  animation-direction: reverse;
}

.wave-layer:nth-of-type(3){
  --wave-y: 16px;
  fill: var(--wave-c3);
  opacity: .4;
  animation-duration: var(--wave-speed-3);
}

.wave-layer:nth-of-type(4){
  --wave-y: 22px;
  fill: var(--wave-c2);
  opacity: .32;
  animation-duration: var(--wave-speed-4);
  animation-direction: reverse;
}

/* Para anadir mas capas:
   1) agrega otro <g class="wave-layer"> en el SVG
   2) crea .wave-layer:nth-of-type(5) con nuevo fill/opacidad/duracion */
@keyframes waveMove {
  0% { transform: translate3d(-90px, var(--wave-y), 0); }
  100% { transform: translate3d(85px, var(--wave-y), 0); }
}

/* =========================
  Background effects
========================= */
.bg{
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .18;
}

.bg__blob{
  position: absolute;
  width: 46vmax;
  height: 46vmax;
  filter: blur(50px);
  opacity: .55;
  transform: translateZ(0);
  border-radius: 999px;
}

.bg__blob--a{
  left: -18vmax;
  top: -14vmax;
  background: radial-gradient(circle at 30% 30%, var(--primaryB), transparent 60%),
              radial-gradient(circle at 70% 60%, var(--primaryA), transparent 55%);
}

.bg__blob--b{
  right: -18vmax;
  bottom: -18vmax;
  background: radial-gradient(circle at 30% 30%, var(--accent), transparent 60%),
              radial-gradient(circle at 70% 60%, var(--primaryA), transparent 55%);
}

.bg__grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 10%, rgba(0,0,0,.9), transparent 70%);
  opacity: .35;
}

/* =========================
  Glass component
========================= */
.glass{
  /* Ajusta esta opacidad si el fondo cambia de luminosidad */
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #0f172a;
}

/* =========================
  Navbar
========================= */
.nav{
  /* Navbar claro estilo vidrio: ajusta aqui fondo/borde/blur */
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(0,0,0,.08);
  color: #1e293b;
}

.nav__inner{
  height: 72px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo + titulo del navbar: cambia aqui el tamano del logo */
/* Si cambias el archivo, actualiza src en index.html -> images/logo.png */
.navbar-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.brand-logo{
  height:40px;
  width:auto;
  object-fit:contain;
  display:block;
}

/* Tipografia del titulo de marca: cambia aqui fuentes/estilo */
.brand-text{
  display:flex;
  align-items:baseline;
  gap:6px;
}

.brand-main{
  font-family:'Playfair Display', serif;
  font-size:26px;
  font-weight:700;
  color:#0f172a;
}

.brand-sub{
  font-family:'Allura', cursive;
  font-size:20px;
  color:#0f172a;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 160px;
}

.brand__mark{
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 30%, var(--primaryB), var(--primaryA));
  box-shadow: 0 10px 28px rgba(34,211,238,.18);
}

.brand__name{
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.brand__tag{
  font-size: .92rem;
  color: rgba(15,23,42,.66);
  margin-left: 6px;
}

/* Logo tipografico navbar: cambia aqui las fuentes del logotipo */
.logo{
  display:flex;
  align-items:baseline;
  gap:8px;
  line-height:1;
}

.logo-main{
  font-family:'Playfair Display', serif;
  font-size:32px;
  font-weight:700;
  letter-spacing:0.5px;
  color:#0f172a;
}

.logo-sub{
  font-family:'Allura', cursive;
  font-size:22px;
  margin-top:0;
  color:rgba(15,23,42,.82);
}

.nav__links{
  display:none;
  align-items:center;
  gap: 18px;
}

.nav__links a{
  font-size: .95rem;
  color: #0f172a;
  transition: color .2s var(--ease), opacity .2s var(--ease);
  opacity: .95;
}
.nav__links a:hover{ color: #0284c7; opacity: 1; }

.link--cta{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(14,165,233,.28);
  background: rgba(14,165,233,.1);
  color: #0f172a;
}

.menu-toggle{
  display:none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.16);
  background: rgba(255,255,255,.65);
  cursor: pointer;
  z-index: 1002;
}

.menu-toggle span{
  width: 24px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #0f172a;
  /* Velocidad del icono hamburguesa: baja/sube 0.18s para mas/menos dinamismo */
  transition: transform .18s ease, opacity .18s ease;
}

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

.menu-toggle.active span:nth-child(2){
  opacity: 0;
}

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

.mobile-menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 999;
}

.mobile-menu-overlay.active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu{
  position: fixed;
  top: 0;
  right: -260px;
  width: min(260px, 86vw);
  height: 100vh;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  padding: 80px 24px;
  gap: 20px;
  border-left: 1px solid rgba(15,23,42,.12);
  /* Velocidad del panel: ajusta duracion/easing para un deslizamiento mas rapido o suave */
  transition: right .18s cubic-bezier(.4,0,.2,1);
  z-index: 1000;
}

.mobile-menu.active{
  right: 0;
}

.mobile-menu a{
  font-size: 18px;
  font-weight: 500;
  color: #0f172a;
}

/* =========================
  Buttons
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 600;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  will-change: transform;
}

.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); }

.btn--primary{
  border-color: rgba(124,58,237,.35);
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(34,211,238,.85));
  box-shadow: 0 18px 50px rgba(124,58,237,.18);
  color: #ffffff;
}
.btn--primary:hover{ transform: translateY(-2px); }

.btn--ghost{
  background: rgba(255,255,255,.04);
}

.link{
  display:inline-flex;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  margin-top: 10px;
}

/* =========================
  Hero
========================= */
.hero{
  padding: 76px 0 46px;
  position: relative;
}

.hero__grid{
  display:grid;
  gap: 22px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  width: fit-content;
}
.pill__dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--primaryB), var(--primaryA));
  box-shadow: 0 0 0 6px rgba(34,211,238,.10);
}

.hero__title{
  margin: 14px 0 10px;
  font-size: clamp(2.1rem, 1.5rem + 2.4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.text-gradient{
  background: linear-gradient(135deg, #ffffff 0%, var(--primaryB) 30%, var(--primaryA) 65%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle{
  margin: 0 0 18px;
  font-size: 1.06rem;
  color: #334155;
  max-width: 52ch;
}

.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__proof{
  margin-top: 22px;
  display:grid;
  gap: 10px;
}

.proof{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.proof__icon{
  width: 34px; height: 34px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.proof strong{ display:block; }
.proof span{ display:block; color: rgba(255,255,255,.65); font-size: .92rem; }

.hero__visual{
  align-self: start;
}

.card--hero{
  overflow:hidden;
}
.card--hero__top{
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 16px 16px 10px;
}
.chip{
  width: 44px; height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(34,211,238,.85), rgba(124,58,237,.85));
  box-shadow: 0 18px 60px rgba(34,211,238,.12);
  border: 1px solid rgba(255,255,255,.16);
}
.card--hero__meta h3{
  margin: 2px 0 0;
  letter-spacing: -0.02em;
}
.card--hero__img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.card--hero__bottom{
  padding: 14px 16px 16px;
}
.mini-badges{ display:flex; gap: 8px; flex-wrap: wrap; }
.badge{
  font-size: .84rem;
  color: rgba(255,255,255,.78);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

/* Scroll hint */
.scrollHint{
  display:none;
}

/* =========================
  Grids / cards
========================= */
.grid3{
  display:grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.grid2{
  display:grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.feature, .benefit, .service, .quote{
  padding: 18px;
}

.feature__icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 10px;
}
.feature__icon svg{ width: 22px; height: 22px; color: rgba(255,255,255,.88); }

.feature h3, .benefit h3, .service h3{
  margin: 6px 0 8px;
  letter-spacing: -0.02em;
}
.feature p, .benefit p, .service p{
  margin: 0;
  color: rgba(255,255,255,.70);
}

.split{
  display:grid;
  gap: 18px;
}
.checklist{
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display:grid;
  gap: 10px;
}
.checklist li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(255,255,255,.78);
}
.check{
  width: auto;
  height: auto;
  border-radius: 6px;
  display:grid; place-items:center;
  background:#dcfce7;
  border: 1px solid rgba(52,211,153,.25);
  color:#10b981;
  font-weight:700;
  font-size:18px;
  padding:4px 8px;
  flex: 0 0 auto;
}

.mediaCard{
  padding: 14px;
}
.mediaCard__grid{
  display:grid;
  gap: 12px;
}
.mediaCard__grid img{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  height: 180px;
  object-fit: cover;
}
.mediaCard__note{
  margin-top: 12px;
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.tag{
  font-size: .82rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
}
.miniList{
  margin: 10px 0 0;
  padding-left: 0;
  list-style: none;
  color: rgba(255,255,255,.68);
  display:grid;
  gap: 6px;
}

.quote blockquote{
  margin: 0 0 14px;
  color: rgba(255,255,255,.82);
  font-weight: 500;
}
.quote figcaption{
  display:flex;
  gap: 10px;
  align-items:center;
}
.avatar{
  width: 42px; height: 42px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 700;
}

/* =========================
  About us / Team
========================= */
.about-us{
  position: relative;
}

.section-header{
  max-width: 760px;
}

.team{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.team-member{
  text-align: center;
  padding: 24px 20px;
  border-radius: 22px;
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease);
}

.team-member:hover{
  transform: translateY(-4px);
  border-color: rgba(56,189,248,.32);
  box-shadow: 0 20px 56px rgba(0,0,0,.36);
  background: linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.07));
}

.team-member img{
  width: 128px;
  height: 128px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center 15%; /* mueve el recorte hacia arriba */
  margin: 0 auto 14px;
  border: 2px solid rgba(255,255,255,.28);
  box-shadow: 0 12px 34px rgba(2,6,23,.35);
}

.team-photo{
  width:140px;
  height:140px;
  object-fit: cover;
  border-radius:50%;
  margin-bottom:15px;
  border:3px solid white;
  box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

.team-member h3{
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

/* Ajuste de contraste de texto: roles y enlaces del equipo */
.role{
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,.34);
  background: rgba(56,189,248,.12);
  color:#334155;
  font-size:14px;
  font-weight:500;
}

.team-member p{
  margin: 0;
  color: rgba(255,255,255,.74);
}

.team-social{
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.team-member a{
  color:#0284c7;
  font-weight:500;
}

.team-social a{
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color:#0284c7;
  font-size: .85rem;
  font-weight:500;
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}

.team-social a:hover{
  border-color: rgba(56,189,248,.38);
  background: rgba(56,189,248,.12);
  color:#0284c7;
  text-decoration: underline;
}

/* =========================
  CTA band
========================= */
.cta{
  padding: 0 0 86px;
}
.cta__inner{
  padding: 18px;
  display:flex;
  flex-direction: column;
  gap: 14px;
  align-items:flex-start;
}
.cta__inner h2{
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.cta__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
  FAQ
========================= */
.faq{
  display:grid;
  gap: 12px;
  max-width: 920px;
}
/* FAQ legible: usa .faq__item (actual) y .faq-item (alias) */
.faq__item, .faq-item{
  padding: 16px 16px;
  background:rgba(255,255,255,0.85);
  border:1px solid rgba(0,0,0,0.08);
}
.faq__item summary, .faq-item summary{
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  font-weight: 600;
  color:#0f172a;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item p{
  margin: 10px 0 0;
  color: rgba(255,255,255,.72);
}
.chev{
  width: 10px; height: 10px;
  border-right: 2px solid rgba(255,255,255,.8);
  border-bottom: 2px solid rgba(255,255,255,.8);
  transform: rotate(45deg);
  transition: transform .2s var(--ease);
}
details[open] .chev{ transform: rotate(-135deg); }

/* =========================
  Contact
========================= */
.contact{
  display:grid;
  gap: 14px;
}
.contact__cards{
  margin-top: 14px;
  display:grid;
  gap: 12px;
}
.miniCard{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px 14px;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.miniCard:hover{ transform: translateY(-2px); }
.miniCard__icon{
  width: 40px; height: 40px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.miniCard__arrow{
  margin-left: auto;
  color: rgba(255,255,255,.7);
}

.form{
  padding: 16px;
}
.form label{
  display:grid;
  gap: 8px;
  margin-bottom: 12px;
}
.form span{
  font-size: .92rem;
  color: rgba(255,255,255,.72);
}
/* Estilos de formulario: ajusta aqui contraste de campos y placeholders */
.form input, .form select, .form textarea{
  width: 100%;
  border-radius: 14px;
  border:1px solid rgba(0,0,0,0.15);
  background:rgba(255,255,255,0.95);
  padding: 12px 12px;
  color:#0f172a;
  outline: none;
}
.form input::placeholder, .form textarea::placeholder{ color:#64748b; }
.form input:focus, .form select:focus, .form textarea:focus{
  border-color: rgba(34,211,238,.45);
  box-shadow: 0 0 0 6px rgba(34,211,238,.10);
}
.form__row{
  display:grid;
  gap: 12px;
}
.form__bottom{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
  Footer
========================= */
.footer{
  /* Footer: modifica aqui el color/fondo principal */
  /* Mantener el footer por encima de fondos fijos/animados */
  position: relative;
  z-index: 5;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(15,23,42,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
}

.footer,
.footer p,
.footer span,
.footer a,
.footer strong{
  color:#ffffff;
}
.footer__inner{
  display:grid;
  gap: 18px;
}
.brand--footer .brand__tag{ display:none; }
.footer__cols{
  display:grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.footer__cols strong{
  display:block;
  margin-bottom: 8px;
}
.footer__cols a{
  display:block;
  /* Enlaces del footer: modifica aqui su color */
  color:#e2e8f0;
  padding: 6px 0;
}
.footer__cols a:hover{ color:#ffffff; }

.footer__bottom{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.linkTop{
  color:#ffffff;
  font-weight:500;
  opacity:.95;
}

/* =========================
  Animations (scroll)
========================= */
[data-animate]{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* =========================
  Contrast tuning (si cambias el fondo, ajusta estos tonos)
========================= */
.hero__subtitle,
.feature p, .benefit p, .service p,
.quote blockquote,
.checklist li,
.miniList,
.team-member p,
.faq__item p,
.form span,
.proof span,
.badge,
.tag,
.pill,
.link,
.footer__cols a{
  color: #334155;
}

.feature__icon svg{
  color: #0f172a;
}

/* =========================
  Responsive
========================= */
/* Logo mobile: cambia aqui los tamanos del logo en pantallas pequenas */
@media (max-width: 640px){
  .logo-main{
    font-size:26px;
  }
  .logo-sub{
    font-size:18px;
  }
}

@media (max-width:819px){
  .menu-toggle{
    display:flex;
  }
}

@media (max-width:768px){
  .team-photo{
    width:110px;
    height:110px;
  }

  /* Escala mobile: modifica aqui tamanos del branding */
  .brand-logo{
    height:32px;
  }

  .brand-main{
    font-size:20px;
  }

  .brand-sub{
    font-size:16px;
  }
}

@media (min-width: 820px){
  .nav__links{ display:flex; }
  .menu-toggle{ display:none; }
  .mobile-menu,
  .mobile-menu-overlay{
    display:none !important;
  }

  .hero{
    padding: 96px 0 62px;
  }
  .hero__grid{
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 28px;
  }
  .hero__proof{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .card--hero__img{ height: 380px; }

  .grid3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .grid2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .team{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .split{
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 22px;
  }
  .mediaCard__grid{
    grid-template-columns: 1fr 1fr;
  }
  .mediaCard__grid img{ height: 220px; }

  .cta__inner{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 22px;
  }

  .contact{
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
  }
  .form__row{
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner{
    grid-template-columns: 1.2fr 1.8fr;
    align-items: start;
  }
  .footer__cols{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .scrollHint{
    display:inline-flex;
    position:absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    align-items:center;
    justify-content:center;
    opacity: .85;
    transition: transform .2s var(--ease), opacity .2s var(--ease);
  }
  .scrollHint:hover{ transform: translateX(-50%) translateY(-2px); opacity: 1; }
  .scrollHint span{
    width: 10px; height: 10px;
    border-right: 2px solid rgba(255,255,255,.82);
    border-bottom: 2px solid rgba(255,255,255,.82);
    transform: rotate(45deg);
    animation: bounce 1.6s var(--ease) infinite;
  }
}

@keyframes bounce{
  0%, 100% { transform: rotate(45deg) translate(0,0); opacity:.8; }
  50% { transform: rotate(45deg) translate(3px,3px); opacity:1; }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  [data-animate]{ transition: none; }
  .btn, .miniCard{ transition: none; }
  .scrollHint span{ animation: none; }
  .wave-layer{ animation: none; }
  .waves{ transform: translate3d(0,0,0); }
}
