.footer-contact svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  max-width: 22px;
  max-height: 22px;
  display: inline-block;
  vertical-align: middle;
  overflow: visible;
  margin-right: 6px;
}

.footer-contact li {
  display: flex;
  align-items: center;
}
/* Botón destacado denuncia */
.footer-cta {
  display: inline-block;
  margin: 12px 0 8px 0;
  font-weight: 700;
  color: #fff;
  background: #e11d48;
  border-radius: 6px;
  padding: 0.7em 1.5em;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.footer-cta:hover, .footer-cta:focus {
  background: #be123c;
  box-shadow: 0 4px 16px rgba(225,29,72,0.18);
  transform: translateY(-2px) scale(1.04);
}
/* Footer copyright mostaza y chico */
.copy {
  color: #b7aa63;
  background: none;
  text-align: center;
  font-size: 13px;
  letter-spacing: .2px;
}
/* ========== Base ========== */
:root{
  --bg:#ffffffd5;
  --card:#f7f9fc;
  --muted:#4b5563;
  --txt:#0f172a;
  --brand:#0ea5e9;
  --brand-2:#22d3ee;
  --accent:#38bdf8;
  --radius:18px;
  --shadow:0 10px 30px rgba(2,8,23,.08);
  --shadow-soft:0 8px 24px rgba(2,8,23,.06);
  --maxw:1100px;
  --header-h: 96px;
  --footer-deep:#22223b;
  --footer-text:#fff;
  --footer-muted:#b7aa63;
  --footer-divider:#39395a;
  --mobile-padding: 12px;
  --mobile-radius: 10px;
  --mobile-font: 15px;
}
*{box-sizing:border-box}
html,body{margin:0; padding:0; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial; color:var(--txt); background:var(--bg);}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:100%; max-width:var(--maxw); margin:0 auto; padding:0 20px}

@media (max-width: 600px) {
  html, body {
    font-size: var(--mobile-font);
  }
  .container {
    padding: 0 var(--mobile-padding);
  }
}

/* scroll que respeta el header sticky */
html{
  scroll-padding-top: var(--header-h);
  scroll-behavior: smooth;
}

/* Header */
header{position:sticky; top:0; z-index:50; /*backdrop-filter:saturate(160%) blur(8px)*/; background:rgba(255,255,255); border-bottom:1px solid rgba(2,8,23,.06)}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px}
.logo{height:120px; border-radius:4px; width:auto; max-width:100%; object-fit:contain;}
nav ul{list-style:none; display:flex; gap:18px; margin:0; padding:0}
nav ul li a {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
    position: relative;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
  }

  /* Animación de subrayado al pasar el mouse */
  nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  }
  nav ul li a:hover::after,
  nav ul li a:focus::after {
    transform: scaleX(1);
  }
  nav ul li a:hover,
  nav ul li a:focus {
    color: var(--primary-dark, #0369a1);
}
/* Hamburguesa y menú responsive */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  align-items: center;
}
.nav-menu {
  display: flex;
}
@media (max-width: 700px) {
  .nav {
    flex-wrap: wrap;
    gap: 8px;
  }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    display: none;
    z-index: 100;
  }
  .nav-menu.open {
    display: flex;
  }
  nav ul {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  nav ul {
    gap: 10px;
    font-size: 16px;
  }
}
.btn{display:inline-flex; gap:10px; align-items:center; background:linear-gradient(135deg,var(--brand),var(--brand-2)); padding:12px 16px; border-radius:12px; color:#001018; font-weight:700; border:1px solid rgba(2,8,23,.06); box-shadow:var(--shadow-soft)}
@media (max-width: 600px) {
  .btn {
    padding: 10px 12px;
    font-size: 15px;
    border-radius: var(--mobile-radius);
  }

  /* Reducción del logo en pantallas pequeñas para mantener el header compacto */
  .logo{ height:72px; }
}
.wabtn{display:inline-flex; gap:10px; align-items:center; background:#25D366; color:#08361d; padding:12px 14px; border-radius:999px; font-weight:700; box-shadow:0 10px 30px rgba(0,0,0,.2); transition:transform 0.2s ease, box-shadow 0.2s ease;}
.wabtn:hover, .wabtn:focus { transform: scale(1.05); box-shadow:0 14px 36px rgba(0,0,0,.24); }
@media (max-width: 700px) {
  .wabtn {
    display: none !important;
  }
}
/* Hero 
.hero{padding:64px 0 40px; background:linear-gradient(180deg,#ffffff, #f6fbff)}
.hero-grid{display:grid; grid-template-columns:1.2fr 1fr; gap:32px; align-items:center}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.badge{padding:6px 10px; border:1px solid rgba(2,8,23,.08); border-radius:999px; color:var(--muted); font-size:12px; background:#fff}
.title{font-size:40px; line-height:1.1; margin:.4rem 0 1rem}
@media (max-width: 600px) {
  .title {
    font-size: 28px;
  }
}
.lead{color:var(--muted); font-size:16px; max-width:48ch}
@media (max-width: 600px) {
  .lead {
    font-size: 14px;
    max-width: 90vw;
  }
}
.hero-card{background:#fff; border:1px solid rgba(2,8,23,.08); padding:18px; border-radius:var(--radius); box-shadow:var(--shadow)}
@media (max-width: 600px) {
  .hero-card {
    padding: 12px;
    border-radius: var(--mobile-radius);
  }
}
.gradient{background:linear-gradient(90deg,#0284c7,#06b6d4); -webkit-background-clip:text; background-clip:text; color:transparent}
.actions{margin-top:18px; display:flex; gap:12px; flex-wrap:wrap}
*/

/* Hero */
/* ========== HERO full-width (reemplazo total) ========== */

/* contenedor general */
.hero{ padding:0; background:none; }
.hero.hero-full{
  position:relative;
  width:100%;
  height:clamp(520px, 78vh, 960px); /* alto adaptable 420px, 70vh, 820px*/
  overflow:hidden;
}

/* pista y slides */
.hc-track{
  position:absolute; inset:0;
  display:flex; height:100%;
  transition: transform .5s ease;
}
.hc-slide{ min-width:100%; height:100%; }
.hc-slide img{
  width:100%; height:100%;
  object-fit:cover; display:block;
}

/* velo para legibilidad del texto */
.hero-veil{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.45));
  pointer-events:none;
}

/* contenido sobre las fotos */
.hero-content{
  position:absolute; inset:0;
  display:flex; align-items:center; /* centra vertical */
  color:#fff;
}
.hero .title{
  color:#fff;
  font-size:clamp(36px, 4.2vw, 52px);
  line-height:1.08;
  margin:.4rem 0 1rem;
}
.hero .gradient{
  background:linear-gradient(90deg, var(--brand), var(--brand-2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero .lead{
  color:rgba(255,255,255,.92);
  font-size:16px;
  max-width:56ch;
}
.actions{
  margin-top:18px;
  display:flex; gap:12px; flex-wrap:wrap;
}

/* flechas */
.hc-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:999px;
  background:rgba(255,255,255,.9);
  color:#0f172a;
  border:1px solid rgba(2,8,23,.08);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-soft);
  cursor:pointer; z-index:2;
}
.hc-arrow.prev{ left:14px; }
.hc-arrow.next{ right:14px; }
.hc-arrow:hover{ background:#fff; }

/* puntos */
.hc-dots{
  position:absolute; left:50%; transform:translateX(-50%);
  bottom:14px; display:flex; gap:8px; z-index:2;
}
.hc-dots button{
  width:8px; height:8px; border-radius:999px;
  background:rgba(255,255,255,.45);
  border:0; cursor:pointer;
}
.hc-dots button.is-active{ background:var(--brand); }

/* botón WhatsApp (si lo usás en el HERO) */
:root{ --wa:#25D366; --wa-dark:#128C7E; }
.btn-wa{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:12px;
  background:var(--wa); color:#fff; font-weight:700;
  border:1px solid #1DA851; white-space:nowrap;
}
.btn-wa:hover{ background:var(--wa-dark); }

/* responsive */
@media (max-width: 640px){
  .hero-veil{ background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55)); }
}


/* Sections */
/* Base */
section{padding:56px 0; border-top:1px solid rgba(2,8,23,.06)}
.section-title{font-size:28px; margin:0 0 10px}
.section-lead{color:var(--muted); margin:0 0 24px}
.grid{display:grid; gap:16px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.card{display:flex; flex-direction:column; background:#fff; border:1px solid rgba(2,8,23,.08); border-radius:var(--radius); padding:18px; box-shadow:var(--shadow-soft)}
.chip{display:inline-flex; align-items:center; justify-content:center; gap:12px; font-size:16px; color:var(--muted)}
/* iguales alturas (si lo usás) */
.grid-3{ grid-template-columns:repeat(3,minmax(0,1fr)); }
.grid.equal-cards{ grid-auto-rows:1fr; }
.grid.equal-cards>.card{ height:100%; }

/* Card con imagen de fondo (minimal y sin velo) */
.card--bg{
  background-image: none;        /* se setea inline */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;                     /* saca el borde gris */
  color: #fff;                   /* texto legible sobre foto */
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

/* Asegurá texto claro dentro de la card con foto */
.card--bg h3{ color:#fff; }
.card--bg .section-lead{ color:rgba(255,255,255,.95);text-align: center;  margin-block: auto;}
.card--bg .chip{
  background: rgba(0,0,0,.25);
  color: #fff;
  padding: 18px 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  margin-inline: auto;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(.4,0,.2,1);
  text-align: center;
  pointer-events: auto;
}

.card--bg {
  position: relative;
  overflow: hidden;
}

.card--bg .card-desc {
  display: block;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  font-size: 1.15rem;
  color: #fff;
  text-align: center;
  transition: opacity 0.4s cubic-bezier(.4,0,.2,1);
  z-index: 3;
}

.card--bg:hover .chip,
.card--bg:focus-within .chip {
  opacity: 0;
  pointer-events: none;
}
.card--bg:hover .card-desc,
.card--bg:focus-within .card-desc {
  opacity: 1;
  pointer-events: auto;
}

/* Oculta la descripción y la muestra en hover */
.card-desc {
  display: none;
  margin-top: 0.5em;
  font-size: 1rem;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.3s;
  text-align: center;
}
.card--bg:hover .card-desc,
.card--bg:focus-within .card-desc {
  display: block;
  opacity: 1;
}

/* Limpieza por si quedaron intentos anteriores */
.card--bg::before,
.card--bg::after{ display:none !important; }


/* Responsive mejorado */
@media (max-width: 960px){ .grid-3{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 800px){ .grid-3{ grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  .card {
    padding: 12px;
    border-radius: var(--mobile-radius);
  }
}

/* Carousel */
.carousel{position:relative; border-radius:12px; overflow:hidden; background:#fff; height:200px}
@media (max-width: 600px) {
  .carousel {
    height: 140px;
    border-radius: var(--mobile-radius);
  }
}
.slides{display:flex; transition:transform .5s ease; height:100%}
.slide{min-width:100%; height:100%;}
.slide img{width:100%; height:100%; object-fit:cover}
.controls{position:absolute; bottom:8px; left:50%; transform:translateX(-50%); display:flex; gap:6px; z-index:2}
.controls button{border:none; padding:0; background:none; cursor:pointer}
.dot{width:8px; height:8px; border-radius:50%; background:rgba(2,8,23,.25); cursor:pointer}
.dot.active{background:var(--brand)}
.carousel-arrow{position:absolute; top:50%; transform:translateY(-50%); width:38px; height:38px; border-radius:999px; border:none; background:rgba(255,255,255,.9); color:var(--dark); display:grid; place-items:center; box-shadow:0 10px 20px rgba(0,0,0,.12); z-index:2; cursor:pointer}
.carousel-arrow.prev{left:8px}
.carousel-arrow.next{right:8px}
.carousel-arrow svg{width:18px; height:18px}

/* Destinos: centrar contenido dentro de cada card */
#destinos .card{
  display:flex;
  flex-direction:column;
  align-items:center;   /* centra horizontalmente */
  text-align:center;    /* centra el texto */
  gap:12px;             /* espacio entre título y carrusel */
}

#destinos .card h3{
  margin:0;             /* quita desplazamientos raros */
  text-align:center;
}

/* el carrusel ocupa todo el ancho disponible y queda centrado */
#destinos .card .carousel{
  width:100%;
  max-width:100%;
  margin:0 auto;
  border-radius:12px;
  overflow:hidden;
}

/* asegurá el encuadre de la foto al centro */
#destinos .card .slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center; /* movelo (ej. center 35%) si querés otro foco */
}

/* About */
.about{display:grid; grid-template-columns:1fr; gap:18px}
@media (max-width: 600px) {
  .about {
    gap: 10px;
  }
}
.bullets{margin:0; padding-left:18px; color:var(--muted)}
.values.dashed{border-style:dashed}

/* Contact CTA */
.contact-cta{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}
@media (max-width: 600px) {
  /* Botón denuncia: responsive y animación */
  .footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    margin: 1rem 0;
    padding: 0.75em 2em;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    background: var(--primary);
    border-radius: 1.5em;
    box-shadow: 0 2px 8px rgba(14,165,233,0.10);
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
    outline: none;
    border: none;
    cursor: pointer;
  }
  .footer-cta:hover, .footer-cta:focus {
    background: #0ea5e9cc;
    box-shadow: 0 4px 16px rgba(14,165,233,0.18);
    transform: translateY(-2px) scale(1.03);
  }

  @media (max-width: 600px) {
    .footer-cta {
      width: 100%;
      font-size: 1rem;
      padding: 0.75em 1em;
      justify-content: center;
    }
  }
}

.footgrid {
  display: block; /* eliminamos el grid */
}

@media (max-width: 600px) {
  footer {
    font-size: 12px;
    padding: 8px 0;
  }
}


/* Socials */
.socials{display:flex; gap:10px}
.socials a{padding:8px 12px; border:1px solid rgba(2,8,23,.08); border-radius:999px; background:#fff}

/* WhatsApp Floating */
.wa{position:fixed; right:18px; bottom:18px; background:#25D366; color:#08361d; padding:12px 14px; border-radius:999px; display:flex; align-items:center; gap:10px; font-weight:700; box-shadow:0 10px 30px rgba(0,0,0,.2); transition:box-shadow 0.2s, transform 0.2s; z-index:1000;}
.wa:hover, .wa:focus {
  animation: wa-pulse 1s infinite;
  box-shadow:0 16px 40px rgba(37,211,102,0.25);
  transform: scale(1.08);
}
@keyframes wa-pulse {
  0% { box-shadow:0 10px 30px rgba(37,211,102,0.20); }
  50% { box-shadow:0 20px 50px rgba(37,211,102,0.35); }
  100% { box-shadow:0 10px 30px rgba(37,211,102,0.20); }
}

/* Franja legal */
.footer-legal {
  background: #333;            /* fondo oscuro */
  color: #eee;                 /* texto claro */
  padding: 14px 0;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .footer-legal {
    padding: 12px 0;
    font-size: 12px;
  }
  .footer-legal .container {
    padding: 0 8px;
  }
  .footer-legal .legal-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.footer-legal .container {
  max-width: var(--maxw);    /* mismo ancho que el resto de la web */
  margin: 0 auto;
  padding: 0 20px;
}

.footer-legal .legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* dos columnas iguales */
  gap: 40px;
}

/* Botón destacado denuncia */
.footer-cta {
  display: inline-block;
  margin: 16px 0 12px 0;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #e11d48 0%, #f59e42 100%);
  border-radius: 32px;
  padding: 1em 2.2em;
  text-decoration: none;
  font-size: 1.25rem;
  box-shadow: 0 4px 18px rgba(225,29,72,0.13), 0 1.5px 8px rgba(0,0,0,0.10);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.22s, background 0.5s;
}
.footer-cta .denuncia-btn-text {
  position: relative;
  z-index: 2;
  letter-spacing: 0.02em;
  font-family: inherit;
}
.footer-cta::before {
  content: "";
  position: absolute;
  left: -60%;
  top: 0;
  width: 220%;
  height: 100%;
  background: linear-gradient(120deg, #e11d48 0%, #f59e42 100%);
  opacity: 0.7;
  transition: left 0.7s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.footer-cta:hover::before, .footer-cta:focus::before {
  left: 0;
}
.footer-cta:hover, .footer-cta:focus {
  box-shadow: 0 8px 32px rgba(225,29,72,0.22), 0 2px 12px rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.05);
  background: linear-gradient(90deg, #f59e42 0%, #e11d48 100%);
}

.footer-panel{
  background:var(--footer-deep);
  color:var(--footer-text);
  padding:30px 0 20px;
}
.footer-panel .container{max-width:var(--maxw); margin:0 auto; padding:0 20px}

/* Título superior */
.footer-head{
  text-align:center;
  margin-bottom:28px;
}
.footer-head h4{
  margin:0;
  font-size:22px;
  font-weight:700;
}
.footer-head small{
  display:block;
  color:var(--footer-muted);
  margin-top:6px;
}

/* Grilla principal */
.footer-main{
  display:grid;
  grid-template-columns: auto 1fr; /* logo (auto ancho) | contenido */
  gap:40px;
  align-items:center;
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
    align-items: center;
  }
  .footer-brand, .footer-contact {
    justify-self: center;
    text-align: center;
  }
  .footer-contact {
    font-size: 13px;
  }
  .footer-center {
    font-size: 12px;
    padding: 0 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }
}

/* Izquierda: logo */
.footer-brand{ 
  grid-column: 1;
  display:flex;
  align-items:center;
  justify-content:flex-start; /* logo al costado (a la izquierda) */
  padding-right: 12px;
}
.footer-brand img{
  height:160px; /* más grande por pedido */
  width:auto;
  max-width:100%;
  object-fit:contain;
  display:block;
}
@media (max-width: 600px) {
  .footer-brand img {
    height:64px;
    max-width:80vw;
  }
}

/* Centro: contacto */
.footer-contact{ grid-column: 2; }
.contact-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 60px;
}
.footer-contact{
  grid-column: 2;
  justify-self: end;   /* alinea el bloque a la derecha */
  text-align: right;   /* texto alineado a la derecha */
}
.contact-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer-contact a{text-decoration:none}
.footer-contact a:hover{text-decoration:underline}

/* Asegura que los SVG de los íconos de contacto no se recorten ni se vean cortados */
.footer-contact svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  max-width: 22px;
  max-height: 22px;
  display: inline-block;
  vertical-align: middle;
  overflow: visible;
}

/* Separador */
.footer-divider{
  margin:28px 0;
  border:0;
  height:1px;
  background:var(--footer-divider);
}

/* Avisos y CTA centrales */
.footer-center{
  text-align:center;
  color:var(--footer-muted);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* margin-top: auto; */
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  align-self: center;
}
.footer-cta{
  display: inline-block;
  margin: 12px 0 8px 0;
  font-weight: 700;
  color: var(--brand);
  background: none;
  border: 2px solid var(--brand);
  border-radius: 16px;
  padding: 10px 18px;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(2,8,23,.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-radius 0.2s;
}

.footer-cta:hover {
  background: var(--brand);
  color: #fff;
}

/* Transiciones suaves para menú hamburguesa y botones */
.menu-toggle,
.btn,
.footer-cta {
  transition: background 0.3s, box-shadow 0.3s, color 0.3s, border-radius 0.3s;
}
.menu-toggle:active,
.btn:active,
.footer-cta:active {
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.menu-toggle:hover,
.btn:hover,
.footer-cta:hover {
  background: var(--accent);
  color: #fff;
}
/* Transición para apertura/cierre del menú */
.nav-menu {
  transition: opacity 0.3s, transform 0.3s;
}
.nav-menu.open {
  opacity: 1;
  transform: translateY(0);
}
.nav-menu {
  opacity: 0;
  transform: translateY(-10px);
}

/* Fix menú header: transición solo visual, no oculta el menú por defecto */
@media (max-width: 700px) {
  .nav-menu {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    display: none;
    transition: opacity 0.3s, transform 0.3s;
  }
  .nav-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    display: flex;
  }
}

/* Fix: menú desktop debe ser visible y sin opacidad/transición */
.nav-menu {
  display: flex;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  position: static;
  background: none;
  box-shadow: none;
  flex-direction: row;
  align-items: center;
  padding: 0;
}
@media (max-width: 700px) {
  .nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
  }
  .nav-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Responsivo */
@media (max-width: 992px){
  .footer-main{grid-template-columns:1fr; gap:24px}
  .footer-social{justify-self:start}
  .footer-links{grid-template-columns:1fr 1fr}
}
@media (max-width: 560px){
  .footer-links{grid-template-columns:1fr}
  .social-icons a{width:36px; height:36px}
  .footer-qr img{height:96px}
}

/* Olas */
.wave-sep{
  line-height: 0;              /* saca espacio extra */
  color: #bea466;              /* color base de las olas (tono solicitado) */
  /* usá var(--accent) o cualquier color si preferís */
}
.wave{
  display:block;
  width:100%;
  height:90px;                 /* alto del separador */
}
.wave .w1{ fill: currentColor; opacity:.15; }
.wave .w2{ fill: currentColor; opacity:.25; }
.wave .w3{ fill: currentColor; opacity:.35; }

/* Para invertir (ola hacia arriba en vez de hacia abajo) */
.wave-sep.flip .wave{ transform: scaleY(-1); }

/* Altos alternativos
.wave{ height:120px; }  // más alto
.wave{ height:60px; }   // más fino
*/

/* Olas – usa tu paleta existente */
.wave-sep{ line-height:0; }
.wave{ display:block; width:100%; height:90px; }     /* alto del separador */
.wave-sep.band .w-mid{ fill: #bea466; opacity: .45; }   /* banda fuerte */
.wave-sep.band .w-top{ fill: #bea466; opacity: .35; } /* velo superior */
.wave-sep.band .w-bot{ fill: #bea466;   opacity: .20; } /* velo inferior */

/* si querés invertir (ola hacia arriba) */
.wave-sep.flip .wave{ transform: scaleY(-1); }

/* opcional: evitar “hueco” entre secciones */
.wave-sep{ margin-top:-1px; }

/* ===== ABOUT ===== */
.about{
  display:grid;
  grid-template-columns: 1.1fr 1fr; /* texto | foto */
  gap:24px;
  align-items:center;
}

.about-text .founder{
  margin:10px 0 0;
  font-weight:600;
}
.about-text .founder span{
  opacity:.8; font-weight:400;
}

/* Media (foto) */
.about-media img{
  width:100%; height:auto; display:block;
  border-radius:12px;
  box-shadow: var(--shadow-soft);
  object-fit:cover;
}

/* Métricas */
.about-stats{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:12px;
}
.about-stats .stat{
  background:#fff;
  border:1px solid rgba(2,8,23,.08);
  border-radius:12px;
  padding:14px;
  text-align:center;
  box-shadow: var(--shadow-soft);
}
.about-stats .stat strong{
  display:block;
  font-size:22px;
  color:var(--txt);
  line-height:1.1;
}
.about-stats .stat small{
  display:block;
  color:var(--muted);
}

/* Confianza / Sellos */
.trust-logos{
  margin-top:34px;
  display:flex; gap:16px; flex-wrap:wrap;
  align-items:center; justify-content:center;
  opacity:.95;
}
.trust-logos img{
  height:90px; width:auto; display:block;
  filter: none; /* podés usar grayscale(100%) si los querés atenuar */
}

/* FAQ */
.about-faq{
  margin-top:20px;
  display:grid; gap:10px;
}
.about-faq details{
  background:#fff;
  border:1px solid rgba(2,8,23,.08);
  border-radius:12px;
  padding:10px 14px;
}
.about-faq summary{
  cursor:pointer; font-weight:600;
  list-style:none; /* quita el triángulo por defecto en algunos navegadores */
}
.about-faq summary::-webkit-details-marker{ display:none; }

/* Responsive */
@media (max-width: 960px){
  .about{ grid-template-columns:1fr; }
  .about-media{ order:-1; } /* foto arriba en mobile */
}
