:root {
  --border-soft: rgba(15, 23, 42, 0.06);
  --shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.08);
  --radius-lg: 1.25rem;
  --radius-md: 0.9rem;
  --radius-full: 999px;
  --crema: #EAE9DB;
  --dorado: #C8975B;
  --gris: #9DA5AB;
  --verde: #436064;
  --oscuro: #2C3538;
}


* {
  box-sizing: border-box;
}


html,
body {
  margin: 0;
  padding: 0;
  transform: none !important;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  color: var(--crema);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;

}
h1, h2, h3 {
  font-family: "Tenor Sans", sans-serif;
}

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

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

.container {
  width: min(1600px, 100% - 3rem);
  margin: 0 auto;
}

/* Cuando la página está lista, le ponemos esta clase desde JS */
body.page-loaded {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   BOTONES
   ========================= */
/* Base para TODOS los botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.3rem 2.8rem;
  border-radius: 0.9rem; /* más cuadradito */
  border: 1px solid rgba(200, 151, 91, 0.45);
  background: rgba(15, 23, 42, 0.04);  /* casi transparente en secciones claras */
  color: var(--crema);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: scale(1); /* estado normal */
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.btn:hover {
  transform: translateX(-4px) scale(1.08);          /* 👈 efecto zoom */
}


.btn-primary {
  border-color: #C8975B;
  background: radial-gradient(circle at 0 0, rgb(200, 151, 91), transparent 15%) #C8975B;
  color: var(--crema);
}

.btn-primary:hover {
  background: radial-gradient(circle at 0 0, rgb(200, 151, 91), transparent 15%) #C8975B;
  color: var(--crema);
}

.btn-secondary {
  border-color: rgba(200, 151, 91, 0.7);
  background: rgba(15, 23, 42, 0.03);
  color: #C8975B;
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(200, 151, 91, 0.95);
}

.btn-large {
  padding-inline: 1.9rem;
}

.btn-full {
  width: 100%;
}

/* =========================
   HEADER
   ========================= */

/* NAV / HEADER */
.site-header {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, 100% - 2.5rem);
  z-index: 50;
  background: rgba(15, 23, 42, 0.233);        /* vidrio oscuro sobre el video */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 5px 25px rgba(15, 23, 42, 0.65);
  transition: transform .22s ease, opacity .22s ease;
  will-change: transform, opacity;
}

.site-header.nav-hidden{
  transform: translateY(0, -140%, 0) !important; /* 👈 arriba */
  opacity: 0;
  pointer-events: none;
}

/* Alto interno de la barra */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 72px;
  padding-inline: 1.5rem;
}

/* Logo */
.logo {
  align-items: center;
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 140px;         /* ajustá según tu logo */
  width: auto;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav a {
  font-size: 0.98rem;
  color: var(--crema);
  text-decoration: none;
  text-shadow: var(--dorado);
  padding: 0.2rem 0;
  position: relative;
  font-weight: 500;
}

.nav a:hover {
  color: #C8975B; /* mismo naranja de los botones */
}

/* subrayado finito al hover (opcional) */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: #C8975B;
  border-radius: 999px;
  transition: width 0.18s ease;
}

.nav a:hover::after {
  width: 100%;
}


.header-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.header-cta .btn-primary {
  padding: 1rem;
}

.header-phone {
  display: none;
  font-size: 0.8rem;
  color: var(--crema);
}
/* Hamburguesa */
.menu-toggle{
  display:none;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(237, 235, 187, 0.55);
  background: rgba(237, 235, 187, 0.7);
  cursor: pointer;
  padding: 0;
}

/* las 3 líneas centradas, sin “gap” */
.menu-toggle span{
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--oscuro);
  transform: translateX(-50%);
  transition: transform .2s ease, opacity .2s ease;
}

/* posiciones cerradas */
.menu-toggle span:nth-child(1){ top: 12px; }
.menu-toggle span:nth-child(2){ top: 19px; }
.menu-toggle span:nth-child(3){ top: 26px; }

/* estado abierto → X perfecta y centrada */
.menu-toggle.is-open span:nth-child(1){
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2){
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3){
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}

/* =========================
   HERO
   ========================= */
/* El container dentro del hero ocupa todo el ancho de la pantalla */
.hero .container {
  max-width: 100%;
  width: 100%;
  /* padding arriba/abajo y a los lados */
  padding: clamp(2.5rem, 7vh, 3.5rem) clamp(1.5rem, 6vw, 5rem);
}

.hero {
  padding: 0;
  min-height: 100vh;        /* el hero ocupa toda la altura */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}


/* Video de fondo del hero */
.hero-video {
  position: absolute;
  inset: 0;                /* top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  object-fit: cover;       /* recorta el video para llenar sin deformar */
  z-index: -2;             /* queda detrás del contenido */
  pointer-events: none;    /* no bloquea clicks del usuario */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(15, 23, 42, 0.7) 35%,
    rgba(15, 23, 42, 0.35) 65%,
    rgba(15, 23, 42, 0) 100%
  );
}
/* =========================
   HERO REVEAL / CONTINUO DESDE IZQUIERDA
   ========================= */

.hero-reveal {
  opacity: 0;
  filter: blur(18px);
  transform: translateX(-90px);
  will-change: opacity, transform, filter;
}

body.is-loaded .hero-reveal {
  animation: heroSlideFog 1.35s cubic-bezier(.22, 1, .36, 1) forwards;
}

/* delays más cortos y superpuestos */
body.is-loaded .hero-reveal.r-1 { animation-delay: 0.10s;  animation-duration: 2s;} /* h1 principal */
body.is-loaded .hero-reveal.r-2 { animation-delay: 0.12s; } /* de época */
body.is-loaded .hero-reveal.r-3 { animation-delay: 0.20s; } /* subtítulo */
body.is-loaded .hero-reveal.r-4 { animation-delay: 0.22s; } /* botones */
body.is-loaded .hero-reveal.r-5 { animation-delay: 0.30s; } /* meta */
body.is-loaded .hero-reveal.r-6 { animation-delay: 0.40s; } /* trust pill */

@keyframes heroSlideFog {
  0% {
    opacity: 0;
    filter: blur(18px);
    transform: translateX(-90px);
  }

  35% {
    opacity: 0.35;
    filter: blur(12px);
    transform: translateX(-48px);
  }

  65% {
    opacity: 0.72;
    filter: blur(6px);
    transform: translateX(-18px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

/* para que el título responda bien */
.hero-title-main,
.hero-title-light {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .hero-reveal,
  body.is-loaded .hero-reveal {
    animation: none !important;
    opacity: 1 !important;
    filter: blur(0) !important;
    transform: none !important;
  }
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* o center si querés todo más centrado */
  min-height: inherit;
  width: 100%;
}

.hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: .95;
}

.hero-title-main {
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400; /* regular */
  font-size: clamp(3.8rem, 7vw, 6rem);
  text-transform: uppercase;
  color: var(--crema);
  margin: 0 0 .2rem;
  letter-spacing: 0.01em;
}

.hero-title-light {
  font-family: "Tenor Sans", sans-serif;
  font-weight: 100; /* light */
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  color: var(--crema);
}

.hero-subtitle {
  margin: 1rem 0 0.8rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--crema);
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 5rem;
}

/* Ajustamos meta + card para que se vean sobre el video */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 1.2rem;
  color: var(--crema);
  margin-top: 2rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  
}
.bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.8);
}







/* =========================
   SECCIONES GENERALES
   ========================= */

.section {
  padding: 3.3rem 0;
}

/* Cinta confianza */

.hero .trust-float{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 5;
  margin: 0;
  pointer-events: none; 
}

.hero .trust-pill{
  pointer-events: auto; /* pero si querés, igual se puede seleccionar texto */
  width: fit-content;
  max-width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 1.05rem 1.35rem;
  border-radius: 20px;
  /* glass más visible sobre video */
  background: rgba(10, 16, 28, 0.13);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.274),
    inset 0 1px 0 rgba(255,255,255,.10);
}

/* alineación PERFECTA */
.hero .trust-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;     /* 👈 esto te centra todo verticalmente */
  gap: .75rem;
  color: var(--crema);
  font-size: 1.02rem;      /* más grande */
  line-height: 1.1;
}

.hero .trust-sep{ opacity: .55; }

/* +10 años más llamativo */
.hero .trust-years{
  display: inline-flex;
  align-items: baseline;
  gap: .25rem;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--crema);
  text-shadow: 0 14px 30px rgba(0,0,0,.45);
}

.hero .trust-plus{
  font-size: 1.05rem;
  opacity: .95;
}

.hero .trust-years-label{
  font-size: 1.02rem;
  opacity: .92;
}

/* micro glow naranja, sutil pero pro */
.hero .trust-pill{
  position: relative;
}
.hero .trust-pill::after{
  content:"";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 50%, rgba(200, 151, 91,.20), transparent 55%);
  filter: blur(10px);
  z-index: -1;
  opacity: .9;
}


/* =========================
   CÓMO FUNCIONA / TIMELINE
   ========================= */

.how{
  padding: 5rem 0;
  background: var(--crema);
}

.section-head{
  text-align: center;
  margin-bottom: 2.6rem;
}

.section-head h2{
  margin: 0 0 .4rem;
  font-size: clamp(3.5rem, 2.2vw, 2.1rem);
  color: var(--verde);
}

.section-head p{
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--verde);
}

/* contenedor timeline */
.timeline{
  position: relative;
  max-width: 1420px;
  margin: 0 auto;
  padding: .5rem 0;
}

/* ===== Título flotante en el lado opuesto de la línea ===== */

.t-item::before {
  content: attr(data-label);
  position: absolute;
  /* centrado vertical respecto del item */
  top: 50%;
  transform: translateY(-50%) translateX(-10px); /* arranca un pelín hacia adentro */
  font-size: 2.5rem;        /* mismo tamaño que ya estabas usando */
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #436064;
  max-width: 420px;
  white-space: normal;
  pointer-events: none;
  /* sombra para darle presencia */
  text-shadow: 0 18px 40px rgba(67, 96, 100, 0.377);
  opacity: 0;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

/* Cuando la tarjeta entra en vista, mostramos el título y lo “acomodamos” */
.t-item.step-card.in-view::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.t-item{
  position: relative;
}

.t-side-label{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
  pointer-events: none;
}

.t-left .t-side-label{
  left: calc(100% + 3.2rem);
  text-align: left;
}

.t-right .t-side-label{
  right: calc(100% + 3.2rem);
  flex-direction: row-reverse;
  text-align: right;
}

.t-side-icon{
  width: 252px;
  height: 252px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.95;
}

.t-side-label span{
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.2vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--verde);
}

/* Paso a la izquierda → título a la DERECHA de la línea */
.t-item.t-left::before {
  left: 100%;
  margin-left: 1.8rem;   /* separación hacia afuera */
  text-align: left;
}

/* Paso a la derecha → título a la IZQUIERDA de la línea */
.t-item.t-right::before {
  right: 100%;
  margin-right: 1.8rem;
  text-align: right;
}


/* línea central tenue */
.timeline::before{
  content:"";
  position:absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(67, 96, 100, .10);
}

/* item base */
.t-item{
  position: relative;
  width: 50%;
  padding: 1.4rem 2.8rem;
  margin: 1.2rem 0;
}

.t-left{ left: 0; }
.t-right{ left: 50%; }

/* puntito sobre la línea */
.t-dot{
  position:absolute;
  top: 1.6rem;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid rgba(200, 151, 91, .9); /* acento (naranja) */
  box-shadow: 0 10px 30px rgba(200, 151, 91,.25);
}
.t-left .t-dot{ right: -7px; }
.t-right .t-dot{ left: -7px; }

/* CARD: glass transparente + grande */
.t-card{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 1.25rem;
  /* glass on white (transparente pero visible) */
  background: rgb(234, 233, 219);
  border: 1px solid rgba(67, 96, 100, 0.39);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 26px 70px rgba(67, 96, 100, 0.14);
}

/* Imagen más grande y arriba */
.t-media{
  width: 100%;
  height: 240px;          /* 👈 más grande */
  border-radius: 1.05rem;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.08);
}

.t-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* texto */
.t-kicker{
  display:flex;
  align-items:center;
  gap: .55rem;
  margin-bottom: .2rem;
}

.t-num{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-weight: 700;
  color: #436064;
  background: rgba(200, 151, 91,.14);
  border: 1px solid rgba(200, 151, 91,.28);
}

.t-title{
  font-size: 1.15rem;
  font-weight: 750;
  color: #436064;
}

.t-content p{
  font-size: 1.02rem;
  margin: 0 0 .75rem;
  color: #9DA5AB;
}

.t-list{
  padding-left: 1rem;
  font-size: 1rem;
  margin: 0;
  color: #9DA5AB;
}
.t-list li{ margin: .15rem 0; }

/* Hover sutil (opcional, queda pro) */
.t-card:hover{
  transform: translateY(-2px);
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 32px 85px rgba(15, 23, 42, 0.18);
}

/* ===== Animación (compatible con tu JS actual .step-card) ===== */

.step-card.is-anim{
  opacity: 0;
  filter: blur(6px);
  transform: translateY(14px) scale(.98);
  transition: opacity .45s ease, transform .45s ease, filter .45s ease;
}
/* Ajuste animación: ahora entra más suave */
.t-left.step-card.is-anim{ transform: translateX(-22px) translateY(10px) scale(.985); }
.t-right.step-card.is-anim{ transform: translateX(22px) translateY(10px) scale(.985); }

.step-card.is-anim.in-view{
  opacity: 1;
  filter: blur(0);
  transform: translateX(0) translateY(0) scale(1);
}




/* =========================
   QUÉ COMPRAMOS
   ========================= */

.types{
  padding: 4.2rem 0;
  background: var(--crema); /* o el fondo que estés usando en secciones claras */
}


.types-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* SIEMPRE 3 */
  gap: 1.3rem;
}


.type-tile{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: clamp(220px, 22vw, 320px); /* más chicas */
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease;
}

/* Imagen real (zoom suave SIEMPRE) */
.type-tile::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transform: scale(1.00);
  transition: transform 900ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}


.type-glass{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: rgba(255,255,255,.92);
  transform: translateY(0);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.type-tile:hover .type-glass{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-2px);
}

/* Overlay para contraste (y un brillo suave) */
.type-tile::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.14), transparent 45%),
    linear-gradient(180deg, rgba(2,6,23,.18), rgba(2,6,23,.65));
  opacity: .9;
  transition: opacity .25s ease;
}


.type-tile:hover{
  transform: translateY(-3px);
  box-shadow: 0 32px 95px rgba(0,0,0,.24);
}

.type-tile:hover::before{
  transform: scale(1.10);
}

.type-tile:hover::after{
  opacity: .75;
}


.type-glass h3{
  margin: 0 0 .35rem;
  font-weight: 850;
  letter-spacing: .01em;
  text-shadow: 0 14px 28px rgba(0,0,0,.45);
}

.type-glass p{
  margin: 0;
  opacity: .92;
  line-height: 1.35;
}

/* Nota final */
.types-note{
  margin: 1.2rem auto 0;
  text-align: center;
  color: rgba(15,23,42,.60);
  max-width: 70ch;
}
.types .reveal-item{
  opacity: 0;
  transform: translateY(22px) scale(.985);
  filter: blur(10px);
  /* SACÁ el transition de acá */
  will-change: opacity, transform, filter;
}

.types .reveal-item.in-view{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}


/* =========================
   TYPES - Scroll reveal
   ========================= */
.types .reveal-item{
  opacity: 0;
  transform: translateY(22px) scale(.985);
  filter: blur(10px);
  transition:
    opacity .55s ease,
    transform .55s cubic-bezier(.2,.9,.2,1),
    filter .55s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform, filter;
}

.types .reveal-item.in-view{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce){
  .types .reveal-item{
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}


/* =========================
   MARQUEE (carrusel infinito)
   ========================= */
.marquee{
  padding: 2.2rem 0;
  background: var(--crema); /* si venís de sección clara, dejalo */
}

.marquee-wrap{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
   border: 1px solid rgba(255,255,255,.22);
  background: rgba(10, 16, 28, 0.13);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.274),
    inset 0 1px 0 rgba(255,255,255,.10);
  padding: 1.1rem 0;
}
/* fade en bordes tipo “mask” */
.marquee-wrap::before,
.marquee-wrap::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 90px;
  z-index: 2;
  pointer-events:none;
}
.marquee-wrap::before{
  left:0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.164), rgba(255,255,255,0));
}
.marquee-wrap::after{
  right:0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.164), rgba(255,255,255,0));
}

.marquee-track{
  display: inline-flex;
  gap: .75rem;
  padding: 0 1.1rem;
  white-space: nowrap;
  will-change: transform;
  animation: mqMove 22s linear infinite;
}

.mq{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.10);
  color: rgba(15,23,42,.80);
  font-weight: 750;
  font-size: .92rem;
}

@keyframes mqMove{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* Pausa al hover (queda premium) */
.marquee-wrap:hover .marquee-track{
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none !important; }
}



/* =========================
   QUIÉNES SOMOS (STACK)
   ========================= */

.about .section-head { text-align: center; }

.about-stack{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 1.8rem;
  padding: 1.2rem 0 0;
}

.profile-card,
.map-card{
  width: min(1040px, 100%);
  border-radius: 28px;
  border: 1px solid rgba(200, 151, 91,.18);
  background: rgba(200, 151, 91,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}


#quienes-somos {
  position: relative;
  overflow: hidden;
  background-image: url("textura2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.section-qs{
  text-align: center;
  margin-bottom: 2.6rem;
}

.section-qs h2{
  padding: 1.5rem;
  margin: 0 0 .4rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  color: var(--crema);
}

.section-qs p{
  margin: 0;
  color: var(--crema);
  font-size: 1.3rem;
  font-weight: 500;
  
}

.profile-card{
  overflow:hidden;
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: pointer;
}

.profile-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 90px rgba(0,0,0,.30);
  border-color: rgba(218, 220, 232,.30);
}

.profile-card:focus-visible{
  outline: 3px solid rgba(218, 220, 232, .65);
  outline-offset: 4px;
}

.profile-banner{
  position: relative;
  height: 240px; /* más grande */
  background-image:
    radial-gradient(1200px 380px at 20% 30%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    var(--banner);
  background-size: cover;
  background-position: bottom;
}

.profile-badge{
  position:absolute;
  top: 16px;
  left: 16px;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(218, 220, 232,.92);
  font-size: .85rem;
  backdrop-filter: blur(10px);
}

.profile-avatar{
  position:absolute;
  left: 50%;
  bottom: -84px; /* que quede centrada y “colgando” */
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid rgba(218, 220, 232,.75);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.profile-body{
  padding: 92px 2rem 2rem; /* deja lugar para el avatar */
  color: rgba(218, 220, 232, 0.92);
}

.profile-body h3{
  margin: 0 0 .55rem;
  font-size: 1.35rem;
}

.profile-body p{
  margin: 0 0 1rem;
  color: rgba(218, 220, 232, 0.78);
  max-width: 64ch;
}

.profile-chips,
.map-chips{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  margin: .9rem 0 1.1rem;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding: .5rem .75rem;
  border-radius: 999px;
  background: rgba(218, 220, 232,.10);
  border: 1px solid rgba(218, 220, 232,.14);
  color: rgba(218, 220, 232, 0.82);
  font-size: .9rem;
}

.profile-box{
  border-radius: 18px;
  border: 1px solid rgba(218, 220, 232,.14);
  background: rgba(218, 220, 232,.18);
  padding: 1rem 1.05rem;
}

.profile-box h4{
  margin: 0 0 .6rem;
  font-size: 1rem;
  color: rgba(218, 220, 232,.92);
}

.profile-box ul{
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(218, 220, 232,.78);
}

.profile-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top: 1.2rem;
}



/* Base para todos los botones del perfil */
.profile-actions .btn {
  border-radius: 15px;
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  background: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

/* ===== Primary: fondo naranja semi-transparente tipo glass ===== */
.profile-actions .btn-primary {
  background: rgba(200, 151, 91, 0.92);   /* cambiá el 0.92 para más/menos transparencia */
  color: var(--crema);
  border-color: rgba(200, 151, 91, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.profile-actions .btn-primary:hover {
  background: rgba(200, 151, 91, 1);
  transform: translateY(-1px);
}

/* ===== Ghost: borde y fondo clarito translúcido ===== */
.profile-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.08);  /* transparencia del fondo */
  color: var(--crema);
  border-color: rgba(148, 163, 184, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.profile-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(148, 163, 184, 0.8);
}

/* ===== Opcional: botón de Instagram con gradiente ===== */
.profile-actions .btn-ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #ffffff;
  border: none;
  box-shadow: 0 14px 35px rgba(129, 52, 175, 0.35);
}

.profile-actions .btn-ig:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}


.profile-tip{
  padding-top: 1rem;
  color: rgba(218, 220, 232,.65);
  font-size: .95rem;
}

/* MAP CARD */
.map-card{
  margin-bottom: 3rem;
  padding: 1.35rem 1.35rem 1.15rem;
  color: var(--crema);
}

.map-card h3{ margin: 0 0 .25rem; }
.map-card .muted{ margin: 0 0 1rem; color: rgba(0, 0, 0, 0.68); }

.map-frame{
  width: 100%;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
}



/* =========================
   FOOTER (GLASS)
   ========================= */
/* ===== FOOTER ===== */

.site-footer {
  background: var(--oscuro);              /* tu verde grisáceo del fondo */
  color: rgba(147, 156, 163, 0.86); /* texto clarito */
  padding: 1.8rem 0 1.4rem;  /* antes teníamos más padding */
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

/* Contenedor del logo */
.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo footer: crecer sin límites del CSS anterior */
.footer-logo-img {
  width: 180px;          /* ajustá a gusto: 180, 220, 260... */
  height: auto;          /* mantiene proporción */
  max-width: none;       /* rompe cualquier max-width anterior */
  display: block;        /* evita márgenes raros inline */
}

/* Links del sitio */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.6rem;
  justify-content: center;
  font-size: 0.95rem;
}

.footer-links a {
  color: rgba(147, 156, 163, 0.9);
  text-decoration: none;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: rgba(147, 156, 163, 0.9);
  transition: width 0.18s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Redes sociales */
.footer-social {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
}

.footer-social .social {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(241, 245, 249, 0.9);
  background: rgba(147, 156, 163, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.footer-social .social:hover {
  background: rgba(147, 156, 163, 0.28);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(147, 156, 163, 0.4);
}

/* Botones Llamar / WhatsApp */
.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  justify-content: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.fbtn {
  padding: 0.9rem 1.8rem;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.fbtn-call {
    background: rgba(200, 151, 91, 0.95);      /* naranja marca */
  color: #ffffff;
  border-color: rgba(200, 151, 91, 1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.fbtn-call:hover {
  background: rgba(15, 23, 42, 0.32);
  transform: translateY(-1px);
}

.fbtn-wa {
  background: rgba(200, 151, 91, 0.95);      /* naranja marca */
  color: var(--crema);
  border-color: rgba(200, 151, 91, 1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.fbtn-wa:hover {
  background: rgba(200, 151, 91, 1);
  transform: translateY(-1px);
}

/* Línea final de copyright */
.footer-copy {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}

.footer-copy a {
  color: var(--dorado);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-copy a:hover {
  color: var(--dorado);
}

.copy-sep {
  margin: 0 0.45rem;
  color: rgba(255, 255, 255, 0.35);
}



/* =========================
   WhatsApp flotante (global)
   ========================= */
/* WhatsApp flotante (solo imagen, global) */
.wa-float{
  position: fixed !important;
  right: 22px;
  bottom: 22px;
  z-index: 99999;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  animation: waBob 3.2s ease-in-out infinite;
}

.wa-float img{
  width: 90px;   /* ajustá tamaño */
  height: 90px;
  display: block;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.45));
}

.wa-float:hover{
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.06);
}

/* Tooltip */
.wa-tooltip{
  position: absolute;
  right: calc(90%);
  top: 55%;
  transform: translateY(-55%);
  white-space: nowrap;

  padding: .55rem .8rem;
  border-radius: 15px;

  background: rgba(2, 6, 23, 0.411);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);

  color: var(--crema);
  font-weight: 700;
  font-size: .9rem;

  opacity: 0;
  pointer-events: none;
    animation: waTipPulse 3s ease-in-out infinite; /* <-- cada 3s */

}
/* aparece ~0.9s por ciclo */
@keyframes waTipPulse{
  0%, 40%   { opacity: 0; transform: translateY(-50%) translateX(8px); }
  50%, 80%  { opacity: 1; transform: translateY(-50%) translateX(0); }
  100%      { opacity: 0; transform: translateY(-50%) translateX(8px); }
}

/* En hover/focus: queda fijo visible */
.wa-float:hover .wa-tooltip,
.wa-float:focus-visible .wa-tooltip{
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce){
  .wa-tooltip{ animation: none !important; opacity: 1; }
  .wa-float::before,
  .wa-float::after{ animation: none !important; opacity: .35; }
}

/* ===== Pulsación tipo onda detrás del WhatsApp ===== */
.wa-float{
  position: fixed !important;
  right: 22px;
  bottom: 22px;
  z-index: 99999;
}

/* Onda 1 */
.wa-float::before{
  content:"";
  position:absolute;
  inset: -15px;                 /* tamaño de la onda */
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.788), transparent 70%);
  opacity: .85;
  filter: blur(1px);
  animation: waPulse 1.9s ease-out infinite;
  pointer-events:none;
}



@keyframes waPulse{
  0%   { transform: scale(.75); opacity: .85; }
  70%  { opacity: .18; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* En hover: un poquito más “vivo” pero controlado */
.wa-float:hover::before{
  animation-duration: 2.4s;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1268px) {
  .header-inner {
    gap: 0.6rem;
  }
  
  .t-item::before {
    content: none;   /* elimina el pseudo-elemento */
    display: none;
    }

  .menu-toggle{
    display: inline-flex;
    flex-shrink: 0;
  }

  .nav{
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.9rem;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(22, 28, 37, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(0,0,0,.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity .25s ease,
      transform .25s ease,
      visibility .25s ease;
  }

  .nav.nav-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a{
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    color: var(--crema);
    font-size: 1rem;
    line-height: 1.2;
    background: transparent;
    border: 1px solid transparent;
    transition:
      background .2s ease,
      border-color .2s ease,
      color .2s ease,
      transform .2s ease;
  }

  .nav a:hover{
    color: var(--dorado);
    transform: translateX(4px);
  }

  .header-cta .btn-primary{ 
    display: none;
  }

  .hero {
    min-height: 100vh;
    align-items: flex-start;
    padding: 3rem 0 5rem !important;
  }

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

  .hero-media {
    order: -1;
  }


  /* responsive: se apila a una sola columna */
  .timeline::before{ left: 16px; transform: none; }

  .t-item{
    width: 100%;
    left: 0;
    padding: 1.1rem 0 1.1rem 2.4rem;
  }
  .t-dot{
    left: 9px !important;
    right: auto !important;
  }
  .t-card{ grid-template-columns: 140px 1fr; }

  .types-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .profile-body{ padding: 92px 1.1rem 1.2rem; }

  .profile-banner{ height: 210px; }

  .profile-avatar{ width: 232px; height: 232px; bottom: -58px; }

  .map-frame{ height: 320px; }

}

@media (max-width: 480px) {
  .container {
    width: min(100% - 2rem, 100%);
  }

  .t-card{ grid-template-columns: 1fr; }
  .t-media{ min-height: 160px; }

  .t-item::before {
    content: none;
    display: none;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }
  
  .hero {
    min-height: 100vh;
    align-items: flex-start;
    padding: 3rem 0 5rem !important;
  }

  .hero-actions {
    margin-top: 1rem;
  }
  .hero-meta{
    gap: 0.1rem;
    margin-bottom: 2rem;
  }

  .trust-pill{
    width: 100%;
    border-radius: 18px;
    padding: .9rem .95rem;
    margin-top: 1rem;
  }

  .trust-row{
    gap: .55rem .75rem;
  }

  .trust-sep{
    display: none;
  }
  
  .site-header{
    top: 8px;
  }

  .header-inner{
    padding: 0.85rem 1rem;
    border-radius: 24px;
  }

  .logo-img{
    max-height: 136px;
    width: auto;
  }

  .nav{
    padding: 0.8rem;
    border-radius: 24px;
  }

  .nav a{
    font-size: 0.98rem;
    padding: 0.9rem 0.95rem;
  }

  .types-grid{ grid-template-columns: 1fr; }
  .type-tile{ min-height: 220px; }

    .section-head {
    padding-inline: .1rem;
    text-align: center;
  }

  .section-head h2 {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 10vw, 3.8rem);
    line-height: 0.99;
    letter-spacing: 0.01em;
    word-break: break-word;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .section-head p {
    margin: 0 auto;
    max-width: 32ch;
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .contact-form {
    padding: 1.1rem 1rem;
  }

  .footer-copy {
    font-size: 0.88rem;
    padding: 0 12px;
  }

  .copy-sep {
    display: inline-block;
    margin: 0 0.3rem;
  }
}
