/* ========================= */
/* RESET + BASE */
/* ========================= */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Playfair Display", serif;
}

:root{
  --glass: rgba(255, 255, 255, 0.06);
  --glass-2: rgba(255, 255, 255, 0.10);
  --border: rgba(255,255,255,0.18);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.78);
  --shadow: 0 10px 40px rgba(0,0,0,0.35);
}

html{ scroll-behavior: smooth; }

body{
  overflow-x: hidden;
  overflow-y: auto;     /* <- deja scrollear */
  min-height: 100vh;
  color: var(--text);
}

/* Anclas con header fixed */
section{ scroll-margin-top: 110px; }

/* ========================= */
/* FONDO ANIMADO */
/* ========================= */
.background{
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-image{
  width: 100%;
  height: 100%;
  background: url("fondo.jpg") center center / cover no-repeat;
  animation: zoom 20s ease-in-out infinite alternate,
             blurIn 12s ease forwards 3s;
}

/* Zoom suave tipo cine */
@keyframes zoom{
  from{ transform: scale(1); }
  to{ transform: scale(1.1); }
}

/* Blur progresivo */
@keyframes blurIn{
  from{ filter: blur(0px); }
  to{ filter: blur(8px); }
}

video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: blurIn 12s ease forwards 3s;
}

/* Vignette premium para foco */
.background::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.4) 70%,
    rgba(29, 29, 29, 0.55) 100%
  );
}

/* ========================= */
/* HEADER GLASS */
/* ========================= */
.glass-header{
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 1100px;
  border-radius: 60px;
  padding: 14px 30px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 10;
}

.nav-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo{
  font-size: 20px;
  letter-spacing: 3px;
  font-weight: 500;
}

.nav-links{
  display: flex;
  gap: 40px;
}

.nav-links a{
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: 0.3s ease;
}

/* underline elegante */
.nav-links a::after{
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 1px;
  background: white;
  transition: width 0.3s ease;
}

.nav-links a:hover{ color: white; }
.nav-links a:hover::after{ width: 100%; }

.nav-cta{
  padding: 10px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  transition: all 0.3s ease;
}

.nav-cta:hover{
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* ========================= */
/* HERO */
/* ========================= */
.hero{
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  opacity: 0;
  animation: fadeText 2s ease forwards 1s;
  padding: 0 16px;
}

@keyframes fadeText{
  from{ opacity: 0; transform: translateY(20px); }
  to{ opacity: 1; transform: translateY(0); }
}

.hero h1{
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  margin-bottom: 20px;
}

.hero p{
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
}

/* ========================= */
/* BOTONES (sin duplicados) */
/* ========================= */
.buttons{
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn{
  position: relative;
  padding: 16px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.16,.8,.24,1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
}

.primary{
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.04)
  );
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 10px 30px rgba(24, 24, 24, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.primary:hover{
  transform: translateY(-4px);
  box-shadow:
    0 18px 45px rgba(48, 48, 48, 0.23),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

/* Shine sutil */
.primary::before{
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.3),
    transparent
  );
  transition: all 0.8s ease;
}

.primary:hover::before{ left: 120%; }

.secondary{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
}

.secondary:hover{
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.btn:active{
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.btn.full{
  width: 100%;
  text-align: center;
}

/* ========================= */
/* SECCIONES */
/* ========================= */
.container{
  width: 85%;
  max-width: 1100px;
  margin: 0 auto;
}

.section{
  padding: 90px 0;
}

.section-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.section-head h2{
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 400;
  margin-bottom: 12px;
}

.section-head p{
  font-family: "Inter", sans-serif;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}

.section-cta{
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.card{
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.card h3{
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.card p{
  font-family: "Inter", sans-serif;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.muted{
  font-family: "Inter", sans-serif;
  color: rgba(255,255,255,0.75);
}

.list{
  margin: 14px 0 18px;
  padding-left: 18px;
  font-family: "Inter", sans-serif;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.plan.featured{
  background: var(--glass-2);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-6px);
}

.badge{
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.25);
  margin-bottom: 10px;
}

.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-num{
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.25);
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
}

/* Testimonios */
.quote p{
  font-family: "Inter", sans-serif;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin: 0 0 14px;
}

.quote-meta{
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-family: "Inter", sans-serif;
}

/* FAQ */
.accordion details summary{
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  list-style: none;
}
.accordion details summary::-webkit-details-marker{ display: none; }

.accordion details p{
  margin-top: 12px;
  font-family: "Inter", sans-serif;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

/* ========================= */
/* COTIZACIÓN */
/* ========================= */
.quote-box{
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 26px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.trust{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.trust-item{
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  padding: 14px;
  background: rgba(0,0,0,0.18);
}

.quote-form .field{ margin-bottom: 12px; }

.quote-form label{
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.78);
}

.quote-form input,
.quote-form select,
.quote-form textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
  color: white;
  outline: none;
  font-family: "Inter", sans-serif;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder{
  color: rgba(255,255,255,0.45);
}

.fineprint{
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 10px;
  color: rgba(255,255,255,0.7);
}

.cta-card{
  text-align: center;
  padding: 36px 26px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 980px){
  .nav-links{ display: none; } /* si quieres, luego metemos menú móvil */
}

@media (max-width: 900px){
  .grid-3, .steps{ grid-template-columns: 1fr; }
  .quote-box{ grid-template-columns: 1fr; }
  .trust{ grid-template-columns: 1fr; }
  .plan.featured{ transform: none; }
}
.contenedor-blanco{
  width: 100%;
  height: 500px;
  background-color: rgb(37, 68, 28);
}
/* ========================= */
/* SECCIONES SIN GLASS (premium) */
/* ========================= */
:root{
  --green: #25441c;         /* tu verde actual */
  --green-2: #1f3718;       /* tono más profundo */
  --paper: #f7f5f0;         /* blanco cálido */
  --ink: #141414;
  --ink-2: rgba(20,20,20,0.72);
  --stroke: rgba(20,20,20,0.12);
  --shadow-soft: 0 18px 55px rgba(0,0,0,0.18);
  --shadow-card: 0 14px 40px rgba(0,0,0,0.12);
}

/* bandas */
.band{
  padding: 110px 0;
  position: relative;
}

.band-green{
  background: linear-gradient(180deg, var(--green), var(--green-2));
  color: rgba(255,255,255,0.92);
}

.band-white{
  background: var(--paper);
  color: var(--ink);
}

/* títulos */
.kicker{
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 14px;
}

.section-head.invert p{ color: rgba(255,255,255,0.82); }
.section-head.invert h2{ color: rgba(255,255,255,0.96); }

.muted-dark{
  font-family: "Inter", sans-serif;
  color: var(--ink-2);
}

/* grid verde */
.band-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.pill-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill{
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.18);
  border-radius: 999px;
  padding: 10px 14px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
}

.band-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

/* botones sólidos para secciones */
.btn.solid{
  background: rgba(255,255,255,0.92);
  color: #111;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.btn.solid:hover{ transform: translateY(-4px); }

.btn.ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.32);
  color: rgba(255,255,255,0.92);
}

.btn.ghost:hover{
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

/* métricas */
.band-metrics{
  display: grid;
  gap: 12px;
}

.metric-card{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.20);
  padding: 18px;
}

.metric-num{
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.metric-label{
  font-family: "Inter", sans-serif;
  opacity: 0.82;
  margin-top: 6px;
}

/* cards blancas premium */
.white-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.white-card{
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: transform .35s cubic-bezier(.16,.8,.24,1), box-shadow .35s cubic-bezier(.16,.8,.24,1);
}

.white-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.16);
}

.white-card h3{
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}

.white-card p{
  font-family: "Inter", sans-serif;
  color: var(--ink-2);
  line-height: 1.7;
}

.list-dark{
  margin: 14px 0 18px;
  padding-left: 18px;
  font-family: "Inter", sans-serif;
  color: rgba(20,20,20,0.72);
  line-height: 1.7;
}

.link-cta{
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: #0f2b0a;
  font-weight: 600;
}

.link-cta:hover{ text-decoration: underline; }

/* pasos verdes */
.steps-green{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.step{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.18);
  padding: 22px;
}

.step h3{ margin: 8px 0 8px; font-weight: 500; }
.step p{ font-family: "Inter", sans-serif; opacity: 0.84; line-height: 1.65; }

.step-badge{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.25);
  font-family: "Inter", sans-serif;
}

/* panel cotización blanco */
.quote-panel{
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--stroke);
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.quote-panel h2{ margin-bottom: 10px; font-weight: 500; }
.trust-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.trust-chip{
  border: 1px solid rgba(20,20,20,0.12);
  background: rgba(20,20,20,0.04);
  border-radius: 999px;
  padding: 10px 12px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(20,20,20,0.75);
}

/* form en blanco */
.quote-form-dark .field{ margin-bottom: 12px; }

.quote-form-dark label{
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(20,20,20,0.72);
}

.quote-form-dark input,
.quote-form-dark select,
.quote-form-dark textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(20,20,20,0.14);
  background: rgba(255,255,255,0.9);
  color: #111;
  outline: none;
  font-family: "Inter", sans-serif;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.quote-form-dark input:focus,
.quote-form-dark select:focus,
.quote-form-dark textarea:focus{
  border-color: rgba(15,43,10,0.45);
  box-shadow: 0 0 0 4px rgba(15,43,10,0.10);
}

.fineprint-dark{
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 10px;
  color: rgba(20,20,20,0.65);
}

/* footer */
.footer{
  background: #0f120f;
  color: rgba(255,255,255,0.86);
  padding: 70px 0;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
}

.footer-logo{
  font-size: 20px;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 12px;
}

.footer h4{
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.92);
}

.footer a{
  display: block;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  margin-bottom: 8px;
  transition: color .2s ease;
}

.footer a:hover{ color: white; }

.footer-text{
  font-family: "Inter", sans-serif;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

/* animaciones reveal */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  filter: blur(6px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.9s ease;
}

.reveal.in{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.delay-1{ transition-delay: .10s; }
.delay-2{ transition-delay: .18s; }
.delay-3{ transition-delay: .26s; }
.delay-4{ transition-delay: .34s; }

/* hint en hero */
.hero-hint{
  margin-top: 34px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  opacity: 0.75;
}

/* responsive */
@media (max-width: 980px){
  .band-grid{ grid-template-columns: 1fr; }
  .white-grid{ grid-template-columns: 1fr; }
  .steps-green{ grid-template-columns: 1fr; }
  .quote-panel{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}
/* ========================= */
/* RESPONSIVE PATCH (sin tocar animaciones) */
/* Pega esto al FINAL del CSS */
/* ========================= */

/* Evita “saltos” por header fixed + scroll-margin consistente */
:root{
  --header-h: 92px; /* desktop aprox */
}
section{ scroll-margin-top: calc(var(--header-h) + 18px); }

/* Tip: en móviles, el 100vh a veces miente (Safari). Sin animaciones. */
.hero{
  min-height: 100svh;
  height: auto;
  padding-top: calc(var(--header-h) + 30px);
  padding-bottom: 50px;
}

/* Mantén el look premium: reduce fricción en pantallas pequeñas */
@media (max-width: 1100px){
  .glass-header{ width: 92%; }
  .container{ width: 92%; }
}

@media (max-width: 980px){
  :root{ --header-h: 84px; }

  /* Header: menos alto, menos “me como la pantalla” */
  .glass-header{
    top: 12px;
    padding: 12px 18px;
    border-radius: 40px;
  }

  .logo{
    font-size: 16px;
    letter-spacing: 2px;
  }

  /* CTA del header que no reviente en pantallas chicas */
  .nav-cta{
    padding: 9px 14px;
    font-size: 12px;
    white-space: nowrap;
  }

  /* Secciones: menos aire para no scrollear 3 km por bloque */
  .section{ padding: 72px 0; }
  .band{ padding: 80px 0; }

  /* Grids: cambia antes, no esperes a que todo se rompa */
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .steps-green{ grid-template-columns: 1fr; }

  /* Quote layouts: una columna, con gaps cómodos */
  .quote-box,
  .quote-panel{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Cards: padding más cómodo en móvil */
  .card,
  .white-card,
  .step,
  .metric-card{
    padding: 18px;
    border-radius: 20px;
  }

  /* Footer en una columna, ya lo tienes, pero ajusto espacios */
  .footer{ padding: 56px 0; }
  .footer-grid{ gap: 14px; }
}

/* Phones */
@media (max-width: 640px){
  :root{ --header-h: 78px; }

  body{ overflow-x: hidden; }

  /* Header: aún más compacto */
  .glass-header{
    width: 94%;
    top: 10px;
    padding: 10px 14px;
  }

  .nav-container{ gap: 10px; }

  /* Hero: tipografía y espaciado para “premium”, no “apretado” */
  .hero h1{
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .hero p{
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 26px;
  }

  /* Botones: full width para evitar doble fila rara */
  .buttons{ gap: 12px; }
  .btn{
    width: 100%;
    padding: 14px 18px;
    justify-content: center;
  }

  /* Band grids: una columna */
  .band-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Chips/pills: reduce padding para que no parezca “etiquetado de bodega” */
  .pill{
    padding: 9px 12px;
    font-size: 12.5px;
  }

  /* Trust grid: una columna (ya lo haces en 900, aquí lo aseguro antes) */
  .trust{ grid-template-columns: 1fr; }
  .trust-item{ padding: 12px; }

  /* Inputs: mejor toque móvil */
  .quote-form input,
  .quote-form select,
  .quote-form textarea,
  .quote-form-dark input,
  .quote-form-dark select,
  .quote-form-dark textarea{
    padding: 12px 12px;
    border-radius: 14px;
  }

  /* Contenedor blanco si lo usas como bloque: que no sea un ladrillo fijo */
  .contenedor-blanco{
    height: auto;
    min-height: 320px;
  }
}

/* Extra small */
@media (max-width: 420px){
  .logo{ font-size: 15px; }
  .nav-cta{ padding: 8px 12px; }

  .section-head h2{ line-height: 1.2; }
  .metric-num{ font-size: 24px; }
}
/* ========================= */
/* FOOTER: arreglos premium */
/* ========================= */

.footer{
  background: #0f120f;
  padding: 80px 0;
}

.footer-grid{
  align-items: start;
}

/* Links con más aire y mejor lectura */
.footer a{
  padding: 6px 0;
  margin-bottom: 0;
  opacity: 0.9;
}

.footer a:hover{ opacity: 1; }

/* Separadores sutiles para que no sea “bloque de texto” */
.footer .footer-col{
  position: relative;
}

@media (max-width: 980px){
  .footer{ padding: 64px 0; }

  /* Una columna, pero con estructura */
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* “Tarjetas” sutiles por sección */
  .footer .footer-col{
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    border-radius: 18px;
    padding: 18px 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  /* Logo arriba con más presencia */
  .footer-logo{
    font-size: 18px;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
  }

  .footer h4{
    font-size: 12px;
    margin-bottom: 8px;
    opacity: 0.95;
  }

  .footer-text{
    font-size: 14px;
    line-height: 1.65;
  }

  /* Links en 2 columnas para que no sea un scroll infinito */
  .footer .footer-col ul,
  .footer .footer-col nav{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 14px;
  }

  /* Si tus links no están en <ul>/<nav>, aplica igual */
  .footer .footer-col a{
    font-size: 13px;
    padding: 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 520px){
  /* En pantallas muy chicas, vuelve a 1 columna para no apretar */
  .footer .footer-col ul,
  .footer .footer-col nav{
    grid-template-columns: 1fr;
  }

  .footer .footer-col{
    padding: 16px 14px;
  }
}
/* ========================= */
/* FOOTER CLEAN PREMIUM (sin contenedores) */
/* ========================= */

.footer{
  background: #0f120f;
  padding: 90px 0 50px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Marca */
.footer-logo{
  font-size: 22px;
  letter-spacing: 4px;
  font-weight: 500;
  margin-bottom: 18px;
}

.footer-text{
  font-family: "Inter", sans-serif;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  font-size: 14px;
  max-width: 320px;
}

/* Títulos */
.footer h4{
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.9);
}

/* Links */
.footer a{
  display: block;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
  font-size: 14px;
  transition: opacity .2s ease;
}

.footer a:hover{
  opacity: 1;
}

/* Separación inferior sutil */
.footer::after{
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,0.08);
  margin-top: 60px;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 980px){

  .footer{
    padding: 70px 0 40px;
  }

  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }

  /* La marca ocupa todo arriba */
  .footer-grid > div:first-child{
    grid-column: 1 / -1;
  }

  .footer-text{
    max-width: 100%;
  }
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 600px){

  .footer{
    padding: 60px 0 30px;
    text-align: center;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer h4{
    margin-bottom: 14px;
  }

  .footer a{
    margin-bottom: 8px;
  }

  .footer::after{
    margin-top: 40px;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}