  :root{
    --navy:#1e2f48;
    --navy-soft:#2c4365;
    --teal:#09c993;
    --teal-deep:#078a69;
    --gold:#f7d002;
    --cream:#f7f5f0;
    --beige:#ffebd8;
    --grayer:#f2f2f2;
    --white:#ffffff;
    --ink:#1e2f48;
    --ink-soft:#5a6b82;
    --max-w:1180px;
    --color-primary: #2c3e50;
    --color-accent: #3498db;
    --color-bg: #ffffff;
    --color-text: #333333;
    --transition-speed: 0.3s;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}

/* =========================================
   Estructura Principal del Header (BEM)
========================================= */
.header {
  background-color: var(--color-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.header__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

/* =========================================
   Menú Móvil (Botón Hamburguesa CSS-Only)
========================================= */
.header__checkbox {
  display: none; /* Ocultamos el checkbox real */
}

.header__toggle-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  z-index: 1001;
}

/* Líneas del botón hamburguesa */
.header__icon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  position: relative;
  transition: background-color var(--transition-speed);
}

.header__icon::before,
.header__icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  transition: transform var(--transition-speed);
}

.header__icon::before { transform: translateY(-8px); }
.header__icon::after { transform: translateY(8px); }

/* Animación de Hamburguesa a "X" al marcar el checkbox */
.header__checkbox:checked ~ .header__toggle-btn .header__icon {
  background-color: transparent;
}
.header__checkbox:checked ~ .header__toggle-btn .header__icon::before {
  transform: translateY(0) rotate(45deg);
}
.header__checkbox:checked ~ .header__toggle-btn .header__icon::after {
  transform: translateY(0) rotate(-45deg);
}

/* =========================================
   Navegación (Comportamiento Móvil por Defecto)
========================================= */
.header__nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-bg);
  /* Ocultamos el menú usando max-height para permitir transición suave */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
}

.header__menu {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.header__item {
  border-top: 1px solid #f0f0f0;
}

.header__link {
  display: block;
  padding: 1.2rem 1.5rem;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  transition: color var(--transition-speed), background-color var(--transition-speed);
}

.header__link:hover,
.header__link:focus {
  color: var(--color-accent);
  background-color: #f8f9fa;
}

/* Desplegar el menú en móvil cuando el checkbox está activo */
.header__checkbox:checked ~ .header__nav {
  max-height: 600px; /* Altura suficiente para mostrar los enlaces */
}

/* =========================================
   Media Query (Pantallas Grandes / Desktop)
========================================= */
@media screen and (min-width: 768px) {
  .header__toggle-btn {
    display: none; /* Ocultamos el botón hamburguesa */
  }

  .header__nav {
    position: static;
    max-height: none;
    overflow: visible;
    box-shadow: none;
    width: auto;
  }

  .header__menu {
    flex-direction: row;
    gap: 2rem;
  }

  .header__item {
    border-top: none;
  }

  .header__link {
    padding: 0.5rem 0;
    position: relative;
  }

  .header__link:hover {
    background-color: transparent;
  }

  /* Efecto hover sutil para escritorio */
  .header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-speed);
  }

  .header__link:hover::after {
    width: 100%;
  }
}

/* =========================================
   Ajustes para el Logotipo (Imagen)
========================================= */

/* Convertimos el contenedor del logo en flex para un centrado perfecto */
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Controlamos el tamaño máximo de la imagen para que sea responsiva */
.header__logo-img {
  height: 40px; /* Altura recomendada para móviles. Puedes ajustarla. */
  width: auto; /* Mantiene la proporción original de la imagen */
  max-width: 200px; /* Evita que logos horizontales muy anchos rompan el layout en móviles */
  object-fit: contain; /* Evita cualquier deformación o estiramiento */
}

/* Media Query opcional para hacer el logo un poco más grande en escritorio */
@media screen and (min-width: 768px) {
  .header__logo-img {
    height: 50px; 
  }
}

/* =========================================
   Body
========================================= */

  body{
    font-family:'Roboto',sans-serif;
    background:var(--cream);
    color:var(--ink);
    overflow-x:hidden;
    font-weight:400;
    line-height:1.6;
  }

  h1,h2,h3,h4{202
    font-family:'Montserrat',sans-serif;
    font-weight:800;
    color:var(--navy);
    line-height:1.15;
  }

  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}

  .wrap{
    max-width:var(--max-w);
    margin:0 auto;
    padding:0 32px;
  }

  .eyebrow{
    font-family:'Roboto',sans-serif;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    font-size:13px;
    color:var(--teal-deep);
  }

  /* ---------- reveal on scroll ---------- */
  .reveal{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  }
  .reveal.is-visible{opacity:1;transform:translateY(0);}

  @media (prefers-reduced-motion: reduce){
    .reveal{opacity:1;transform:none;transition:none;}
    *{animation:none !important;}
  }

  /* ================= HERO ================= */
  .hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
      radial-gradient(ellipse 900px 500px at 12% 8%, rgba(247,208,2,.55), transparent 60%),
      linear-gradient(125deg, var(--gold) 0%, var(--teal) 42%, var(--navy) 100%);
    overflow:hidden;
    padding:120px 0 90px;
  }

  .hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
      repeating-linear-gradient(115deg, rgba(255,255,255,.04) 0px, rgba(255,255,255,.04) 2px, transparent 2px, transparent 70px);
    pointer-events:none;
  }

  .hero-mesh{
    display:none;
    position:absolute;
    right:-120px;
    top:50%;
    transform:translateY(-50%);
    width:620px;
    opacity:.5;
    filter:drop-shadow(0 30px 60px rgba(0,0,0,.25));
    animation:floatMesh 9s ease-in-out infinite;
  }
  @keyframes floatMesh{
    0%,100%{transform:translateY(-50%) rotate(0deg);}
    50%{transform:translateY(-54%) rotate(3deg);}
  }

  .hero-inner{
    position:relative;
    z-index:2;
    max-width:680px;
  }

  .hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.9);
    border-radius:100px;
    padding:8px 18px 8px 10px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.04em;
    color:var(--navy);
    margin-bottom:28px;
  }
  .hero-badge .dot{
    width:26px;height:26px;border-radius:50%;
    background:conic-gradient(from 180deg, var(--gold), var(--teal), var(--navy), var(--gold));
  }

  .hero h1{
    color:var(--white);
    font-size:clamp(38px,5.4vw,64px);
    letter-spacing:-.01em;
    text-shadow:0 4px 30px rgba(0,0,0,.18);
  }

  .hero p.lede{
    color:rgba(255,255,255,.95);
    font-size:19px;
    font-weight:400;
    max-width:520px;
    margin:24px 0 36px;
    text-shadow:0 2px 14px rgba(0,0,0,.12);
  }

  .hero-ctas{display:flex;gap:16px;flex-wrap:wrap;}

  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-family:'Roboto',sans-serif;
    font-weight:700;
    font-size:15px;
    padding:16px 30px;
    border-radius:10px;
    border:none;
    cursor:pointer;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .btn:hover{transform:translateY(-3px);}
  .btn-primary{
    background:var(--navy);
    color:var(--white);
    box-shadow:0 12px 28px rgba(30,47,72,.35);
  }
  .btn-primary:hover{box-shadow:0 16px 34px rgba(30,47,72,.45);}
  .btn-ghost{
    background:rgba(255,255,255,.15);
    color:var(--white);
    border:1.5px solid rgba(255,255,255,.7);
    backdrop-filter:blur(4px);
  }
  .btn-ghost:hover{background:rgba(255,255,255,.28);}

  .hero-stats{
    display:flex;
    gap:40px;
    margin-top:64px;
    flex-wrap:wrap;
  }
  .hero-stat b{
    display:block;
    font-family:'Montserrat',sans-serif;
    font-weight:900;
    font-size:30px;
    color:var(--white);
  }
  .hero-stat span{
    font-size:13px;
    color:rgba(255,255,255,.85);
    font-weight:500;
  }

  /* ================= SECTION GENERIC ================= */
  section{padding:110px 0;position:relative;}
  .section-head{max-width:680px;margin-bottom:56px;}
  .section-head h2{font-size:clamp(30px,3.6vw,44px);margin-top:14px;}
  .section-head p{color:var(--ink-soft);font-size:17px;margin-top:16px;}
  .section-head.center{margin:0 auto 56px;text-align:center;}

  /* ================= QUIÉNES SOMOS ================= */
  .about{background:var(--white);}
  .about-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:64px;
    align-items:center;
  }
  .about-copy{max-width:760px;}
  .about-copy p{font-size:17px;color:var(--ink-soft);margin-bottom:18px;}
  .about-copy p strong{color:var(--navy);}

  .about-visual{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    aspect-ratio:4/5;
    background:linear-gradient(160deg,var(--gold),var(--teal) 55%,var(--navy));
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .about-visual .mesh-wrap{width:62%;opacity:.92;filter:drop-shadow(0 20px 40px rgba(0,0,0,.2));}
  .about-visual .tag{
    position:absolute;
    bottom:22px;left:22px;right:22px;
    background:rgba(30,47,72,.88);
    color:#fff;
    border-radius:14px;
    padding:18px 20px;
    font-family:'Montserrat',sans-serif;
    font-weight:700;
    font-size:15px;
  }
  .about-visual .tag span{
    display:block;
    font-family:'Roboto',sans-serif;
    font-weight:400;
    font-size:13px;
    color:rgba(255,255,255,.75);
    margin-top:4px;
  }

  .fact-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:36px;
  }
  .fact{
    border:1.5px solid #e7e2d6;
    border-radius:16px;
    padding:20px;
    background:var(--cream);
  }
  .fact b{
    display:block;
    font-family:'Montserrat',sans-serif;
    font-size:22px;
    color:var(--teal-deep);
    margin-bottom:4px;
  }
  .fact span{font-size:13px;color:var(--ink-soft);}

  /* ================= MISIÓN / VISIÓN ================= */
  .mv{
    background:var(--navy);
    color:var(--white);
  }
  .mv-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
  }
  .mv-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.14);
    border-radius:20px;
    padding:42px 38px;
    position:relative;
  }
  .mv-card .quote-mark{
    font-family:'Montserrat',sans-serif;
    font-size:54px;
    font-weight:900;
    color:var(--gold);
    line-height:1;
    margin-bottom:6px;
  }
  .mv-card .eyebrow{color:var(--gold);}
  .mv-card h3{color:var(--white);font-size:22px;margin:10px 0 16px;}
  .mv-card p{
    font-size:18px;
    font-weight:500;
    color:rgba(255,255,255,.92);
    font-style:italic;
    line-height:1.5;
  }

  /* ================= VALORES ================= */
  .values{background:var(--cream);}
  .value-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
  }
  .value-card{
    background:var(--white);
    border-radius:18px;
    padding:26px 20px;
    text-align:center;
    box-shadow:0 12px 30px rgba(30,47,72,.06);
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .value-card:hover{transform:translateY(-6px);box-shadow:0 20px 40px rgba(30,47,72,.1);}
  .value-num{
    width:40px;height:40px;
    border-radius:50%;
    margin:0 auto 16px;
    display:flex;align-items:center;justify-content:center;
    background:linear-gradient(135deg,var(--teal),var(--teal-deep));
    color:#fff;
    font-family:'Montserrat',sans-serif;
    font-weight:800;
    font-size:15px;
  }
  .value-card h4{font-size:15px;line-height:1.3;}



/* ================= Filosofia ================= */
  .filo{background:var(--cream);}
  .filo-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));
    gap:16px;
  }
  .value-card-filo{
    background:var(--white);
    border-radius:18px;
    padding:26px 20px;
    text-align:center;
    box-shadow:0 12px 30px rgba(30,47,72,.06);
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .value-card-filo:hover{transform:translateY(-6px);box-shadow:0 20px 40px rgba(30,47,72,.1);}
  .value-num-filo{
    width:40px;height:40px;
    border-radius:50%;
    margin:0 auto 16px;
    display:flex;align-items:center;justify-content:center;
    background:linear-gradient(135deg,var(--teal),var(--teal-deep));
    color:#fff;
    font-family:'Montserrat',sans-serif;
    font-weight:800;
    font-size:15px;
  }
  .value-card-filo h4{font-size:15px;line-height:1.3;}


  /* ================= PILARES / BONO SOCIAL ================= */
  .pillars-section{
    background:var(--navy);
    color:var(--white);
    position:relative;
    overflow:hidden;
  }
  .pillars-section .eyebrow{color:var(--gold);}
  .pillars-section .section-head h2{color:var(--white);}
  .pillars-section .section-head p{color:rgba(255,255,255,.72);}

  .pillar-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-bottom:56px;
  }
  .pillar-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.14);
    border-radius:20px;
    padding:32px 28px;
    transition:background .3s ease, transform .3s ease;
  }
  .pillar-card:hover{background:rgba(255,255,255,.11);transform:translateY(-6px);}
  .pillar-card .glyph{
    width:52px;height:52px;
    border-radius:14px;
    background:linear-gradient(135deg,var(--gold),var(--teal));
    margin-bottom:20px;
    display:flex;align-items:center;justify-content:center;
    font-size:22px;
  }
  .pillar-card h4{color:var(--white);font-size:18px;margin-bottom:10px;}
  .pillar-card p{font-size:14.5px;color:rgba(255,255,255,.68);}

  .bono-banner{
    background:linear-gradient(120deg, var(--teal) 0%, var(--teal-deep) 100%);
    border-radius:22px;
    padding:46px 50px;
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:30px;
  }
  .bono-banner h3{color:var(--white);font-size:clamp(22px,2.6vw,30px);max-width:560px;}
  .bono-banner .quote{
    font-family:'Montserrat',sans-serif;
    font-weight:900;
    font-size:clamp(20px,2.4vw,26px);
    color:var(--navy);
    background:var(--gold);
    padding:14px 26px;
    border-radius:100px;
    white-space:nowrap;
  }

  /* ================= SERVICIOS ================= */
  .services{background:var(--white);}
  .service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
  }
  .service-card{
    background:var(--cream);
    border-radius:20px;
    overflow:hidden;
    border:1px solid #e7e2d6;
    transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    display:flex;
    flex-direction:column;
  }
  .service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 26px 50px rgba(30,47,72,.13);
    border-color:transparent;
  }
  .service-card .top{
    height:8px;
    background:linear-gradient(90deg,var(--gold),var(--teal));
  }
  .service-card .body{padding:24px 22px 28px;flex:1;display:flex;flex-direction:column;}
  .service-card .logo-badge{
    height:34px;
    margin-bottom:18px;
    display:flex;
    align-items:center;
  }
  .service-card .logo-badge img{
    height:100%;
    width:auto;
    object-fit:contain;
    object-position:left;
  }
  .service-card .icon-badge{
    width:46px;height:46px;
    border-radius:13px;
    background:linear-gradient(135deg,var(--teal),var(--teal-deep));
    display:flex;align-items:center;justify-content:center;
    font-size:20px;
    margin-bottom:16px;
  }
  .service-card .kicker{
    font-size:11.5px;font-weight:700;letter-spacing:.06em;
    text-transform:uppercase;color:var(--teal-deep);
    margin-bottom:6px;
  }
  .service-card h4{font-size:17.5px;margin-bottom:10px;}
  .service-card p{font-size:14px;color:var(--ink-soft);flex:1;}
  .service-card .status{
    margin-top:14px;
    display:inline-flex;
    align-self:flex-start;
    font-size:11px;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;
    padding:5px 11px;
    border-radius:100px;
  }
  .status.live{background:rgba(9,201,147,.14);color:var(--teal-deep);}
  .status.soon{background:rgba(247,208,2,.22);color:#8a6d00;}

  /* ================= EQUIPO TEAM ================= */
  .team{background:var(--cream);}
  .team-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
  }
  .team-services{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
  }

.team{
    padding-bottom:10px;
}

  .team-card{
   display:grid;
   grid-template-columns:130px 1fr;
   gap:22px;
   padding:28px;
   border-radius:20px;
   background:var(--white);
   border:1px solid #e7e2d6;
  }
  .team-photo{
    width:130px;height:130px;
    border-radius:50%;
    overflow:hidden;
    background:linear-gradient(135deg,var(--gold),var(--teal));
    padding:4px;
  }
  .team-photo img{width:100%;height:100%;border-radius:50%;object-fit:cover;}
  
.team-role{
    font-size:12px;font-weight:700;letter-spacing:.06em;
    text-transform:uppercase;color:var(--teal-deep);margin-bottom:6px;
  }

  .team-card h4{font-size:19px;margin-bottom:10px;}
  .team-card p{font-size:14px;color:var(--ink-soft);}
  
  
  /* ================= Comunidad ================= */
.community-section{
  background:#fff;
  color:var(--navy);
  position:relative;
  overflow:hidden;
  padding:20px 0 40px 0;
}

.community-section .eyebrow{
  color:var(--teal);
}

.community-section .section-head h2{
  color:var(--navy);
}

.community-section .section-head p{
  color:#5f6b7a;
}

/* Ocultar la antigua grilla de pilares */
.pillar-grid{
  display:none;
}

/* Banner principal */
.bono-banner{
  background:linear-gradient(
    120deg,
    var(--teal) 0%,
    var(--teal-deep) 100%
  );
  border-radius:24px;
  padding:50px;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:30px;
  max-width:1100px;
  margin:0 auto;
}

.bono-banner h3{
  color:var(--white);
  font-size:clamp(24px,3vw,30px);
  line-height:1.2;
  margin:0;
}


.community-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family:'Montserrat',sans-serif;
  font-weight:800;
  font-size:clamp(20px,2vw,28px);
  color:var(--navy);
  background:var(--gold);
  padding:18px 40px;
  border-radius:999px;
  text-decoration:none;
  transition:.3s ease;
}

.community-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}
  
@media (max-width:980px){

  .comunidad-section .bono-banner{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
  }

  .comunidad-section .bono-banner h3{
    text-align:center;
    max-width:100%;
  }

.comunidad-section{
    padding-top:20px;
    padding-bottom:40px;
}
}
  /* ================= CTA FINAL ================= */
  .final-cta{
    background:linear-gradient(120deg,var(--gold) 0%, var(--teal) 100%);
    text-align:center;
    padding:120px 0;
  }
  .final-cta h2{
    font-size:clamp(32px,4.6vw,54px);
    color:var(--navy);
    max-width:760px;
    margin:0 auto 22px;
  }
  .final-cta p{
    color:rgba(30,47,72,.8);
    font-size:18px;
    max-width:560px;
    margin:0 auto 38px;
  }
  .final-cta .btn-primary{font-size:17px;padding:20px 42px;}
  
  .cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn-community{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:20px 42px;
  border-radius:10px;
  font-family:'Roboto',sans-serif;
  font-size:17px;
  font-weight:700;
  background:#25D366;
  color:#fff;
  transition:.3s ease;
}

.btn-community:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 34px rgba(37,211,102,.35);
}


  /* ================= FOOTER ================= */
  footer{background:var(--navy);color:rgba(255,255,255,.7);padding:70px 0 30px;}
  .footer-top{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:50px;
    padding-bottom:50px;
    border-bottom:1px solid rgba(255,255,255,.12);
  }
  .footer-brand{display:flex;align-items:center;gap:14px;margin-bottom:16px;}
  .footer-brand svg{width:46px;height:46px;}
  .footer-brand b{
    font-family:'Montserrat',sans-serif;
    color:var(--white);
    font-size:16px;
    line-height:1.3;
    display:block;
  }
  .footer-brand small{color:rgba(255,255,255,.55);font-size:11px;letter-spacing:.05em;}
  .footer-col h5{
    font-family:'Montserrat',sans-serif;
    color:var(--white);
    font-size:14px;
    letter-spacing:.04em;
    text-transform:uppercase;
    margin-bottom:18px;
  }
  .footer-col p, .footer-col a{
    display:block;
    font-size:14.5px;
    color:rgba(255,255,255,.68);
    margin-bottom:12px;
  }
  .social-row{display:flex;gap:12px;margin-top:6px;}
  .social-btn{
    width:42px;height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.18);
    display:flex;align-items:center;justify-content:center;
    transition:background .25s ease, transform .25s ease;
  }
  .social-btn:hover{background:var(--teal);transform:translateY(-3px);}
  .social-btn svg{width:18px;height:18px;}

  .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:26px;
    font-size:13px;
    color:rgba(255,255,255,.45);
    flex-wrap:wrap;
    gap:10px;
  }

  /* ================= RESPONSIVE ================= */
  @media (max-width:980px){
    .about-grid, .mv-grid{grid-template-columns:1fr;}
    .about-grid{gap:40px;}
    .value-grid{grid-template-columns:repeat(3,1fr);}
    .pillar-grid{grid-template-columns:1fr;}
    .service-grid{grid-template-columns:repeat(2,1fr);}
    .team-grid{grid-template-columns:1fr;}
    .angel-grid{grid-template-columns:1fr;}
    .fact-row{grid-template-columns:1fr;}
    .footer-top{grid-template-columns:1fr;gap:34px;}
    .hero-mesh{display:none;}
    .bono-banner{grid-template-columns:1fr;text-align:left;}
    .bono-banner .quote{white-space:normal;width:fit-content;}
    
  }
  @media (max-width:600px){
    .wrap{padding:0 20px;}
    section{padding:80px 0;}
    .hero{padding:140px 0 70px;}
    .hero-stats{gap:26px;}
    .value-grid{grid-template-columns:repeat(2,1fr);}
    .service-grid{grid-template-columns:1fr;}
    .team-card{grid-template-columns:1fr;text-align:left;}
    .team-photo{width:90px;height:90px;}
    .angel-card{grid-template-columns:1fr;text-align:left;}
    .angel-photo{width:90px;height:90px;}

  }
  /*
  @media (max-width:980px){

  .nav-toggle{
    display:block;
  }

  .nav-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:rgba(30,47,72,.95);
    flex-direction:column;
    gap:0;
    display:none;
    padding:20px 0;
  }

  .nav-menu.active{
    display:flex;
  }

  .nav-menu li{
    text-align:center;
    padding:15px 0;
  }

}*/
  /* ================= MENU ================= */

.main-nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  background:transparent;
  padding:20px 0;
}

.nav-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-family:'Montserrat',sans-serif;
  font-size:24px;
  font-weight:800;
  color:#fff;
}

.nav-menu{
  display:flex;
  gap:30px;
  list-style:none;
}

.nav-menu a{
  color:#fff;
  font-weight:600;
  transition:.3s;
}

.nav-menu a:hover{
  color:var(--gold);
}

.nav-toggle{
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:32px;
  cursor:pointer;
}


  /* ================= Angeles ================= */
  .angel{background:var(--cream);}
  .angel-grid{
    display:grid;
    grid-template-columns:repeat(2,2fr);
    gap:30px;
  }
  .angel-card{
   display:grid;
   grid-template-columns:130px 1fr;
   gap:22px;
   padding:28px;
   border-radius:20px;
   background:var(--white);
   border:1px solid #e7e2d6;
  }
  .angel-photo{
    width:130px;height:130px;
    border-radius:50%;
    overflow:hidden;
    background:linear-gradient(135deg,var(--gold),var(--teal));
    padding:4px;
  }
  .angel-photo img{width:100%;height:100%;border-radius:50%;object-fit:cover;}
  
.angel-role{
    font-size:12px;font-weight:700;letter-spacing:.06em;
    text-transform:uppercase;color:var(--teal-deep);margin-bottom:6px;
  }

  .angel-card h4{font-size:19px;margin-bottom:10px;}
  .angel-card p{font-size:14px;color:var(--ink-soft);}


/* ================= CONTACTO ================= */

.contact-section{
  background:var(--cream);
}

.contact-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:30px;
}

.contact-form-card,
.social-card{
  background:var(--white);
  border-radius:20px;
  padding:30px;
  border:1px solid #e7e2d6;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.form-group{
  display:flex;
  flex-direction:column;
}

.form-group label{
  font-weight:700;
  margin-bottom:6px;
  color:var(--navy);
}

.form-group input,
.form-group textarea{
  padding:14px 16px;
  border:1px solid #d9d9d9;
  border-radius:10px;
  font-size:15px;
  font-family:'Roboto',sans-serif;
}

.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--teal);
}

/* Redes */

.social-card h3{
  margin-bottom:10px;
}

.social-card p{
  color:var(--ink-soft);
  margin-bottom:20px;
}

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

.social-item{
  background:var(--cream);
  border-radius:16px;
  overflow:hidden;
  text-align:center;
  transition:.3s ease;
}

.social-item:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 24px rgba(0,0,0,.08);
}

.social-item img{
  width:100%;
  height:120px;
  object-fit:cover;
}

.social-item span{
  display:block;
  padding:12px;
  font-weight:700;
  color:var(--navy);
}

/* Quinta imagen centrada */

.social-item:last-child{
  grid-column:1 / span 2;
}

/* Responsive */

@media (max-width:980px){

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

}

@media (max-width:600px){

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

  .social-item:last-child{
    grid-column:auto;
  }

}

/* ================= LINKTREE STYLES ================= */

.linktree-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.linktree-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.linktree-profile {
  margin-bottom: 32px;
}

.linktree-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.linktree-profile h2 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 8px;
}

.linktree-profile p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.linktree-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.linktree-btn {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(5px);
}

.linktree-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  background: var(--white);
}

.linktree-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 16px;
}

.linktree-btn span {
  flex: 1;
  text-align: center;
  margin-right: 32px; /* Equilibra el espacio del ícono izquierdo */
}
/* ============================================================
   SECCIÓN SERVICIOS DESTACADOS (COACHING / COWORKING)
============================================================ */
.services-block {
  background: var(--white);
  padding: 90px 0;
}

.services-block__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.services-block__card {
  background: var(--cream);
  border: 1.5px solid #e7e2d6;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-block__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(30, 47, 72, 0.08);
}

.services-block__image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--navy-soft);
}

.services-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services-block__card:hover .services-block__img {
  transform: scale(1.05);
}

.services-block__content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.services-block__title {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 14px;
}

.services-block__description {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex-grow: 1;
}

.services-block__btn {
  align-self: flex-start;
  font-size: 14px;
  padding: 12px 24px;
}

/* Adaptación responsive para pantallas medianas y grandes */
@media (min-width: 768px) {
  .services-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-block__image-wrap {
    height: 260px;
  }
}
/* ============================================================
   SECCIÓN EVENTOS / GALERÍA
============================================================ */
.events {
  background: var(--cream);
  padding: 90px 0;
}

/* Grilla de 3 columnas en pantallas grandes */
.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.events__card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid #e7e2d6;
  box-shadow: 0 10px 25px rgba(30, 47, 72, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(30, 47, 72, 0.12);
}

.events__link {
  display: block;
  width: 100%;
  height: 100%;
}

.events__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4; /* Proporción vertical para afiches promocionales */
  overflow: hidden;
  background: var(--navy-soft);
}

.events__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.events__card:hover .events__img {
  transform: scale(1.05);
}

/* Capa hover flotante con texto/icono de zoom */
.events__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 47, 72, 0.65);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.events__card:hover .events__overlay {
  opacity: 1;
}

.events__icon {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  background: var(--teal);
  padding: 10px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   LIGHTBOX (Galería a pantalla completa sin JS)
============================================================ */
.events__lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15, 23, 36, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Muestra la imagen amplia cuando el hash coincide con el ID */
.events__lightbox:target {
  opacity: 1;
  pointer-events: auto;
}

.events__lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease forwards;
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.events__lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: var(--white);
  font-size: 42px;
  font-weight: 300;
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.events__lightbox-close:hover {
  color: var(--gold);
  transform: scale(1.15);
}

/* Adaptación responsive */
@media (max-width: 980px) {
  .events__grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablets */
  }
}

@media (max-width: 600px) {
  .events__grid {
    grid-template-columns: 1fr; /* 1 columna en móviles */
  }
}

/* ================= COOKIE BANNER ================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--navy);
  color: var(--white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
  gap: 15px;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content p {
  font-size: 14px;
  margin: 0;
  text-align: center;
}

.cookie-content a {
  color: var(--teal);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

/* Modificadores de tus botones para el banner */
.cookie-btn {
  padding: 10px 24px;
  font-size: 13px;
}

/* Diseño responsivo para ordenadores (Pantallas grandes) */
@media screen and (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    padding: 20px 40px;
  }
  .cookie-content p {
    text-align: left;
    max-width: 700px;
  }
}

/* ================= POLÍTICA DE PRIVACIDAD ================= */
.privacy-section {
  background: var(--white);
  padding: 120px 0;
}

/* Centrar el contenido y limitar el ancho para mejorar la lectura */
.privacy-wrap {
  max-width: 800px; /* Más estrecho que el max-w general para facilitar la lectura */
}

.privacy-content h3 {
  font-size: 22px;
  color: var(--navy);
  margin: 40px 0 16px;
}

.privacy-content p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 20px;
}

.privacy-content ul {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 24px;
  padding-left: 24px;
}

.privacy-content li {
  margin-bottom: 10px;
}

.privacy-content strong {
  color: var(--navy);
}