:root{
  --bg:#070a0c;
  --bg2:#0a0f12;
  --card:#0b1116cc;
  --line:rgba(255,255,255,.10);
  --text:#eaf2f7;
  --muted:rgba(234,242,247,.72);
  --soft:rgba(234,242,247,.10);
  --brand:#ffffff;
  --accent:#dfe7ee;
  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --radius:18px;
  --radius2:24px;
  --max:1200px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue";
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(800px 500px at 80% 20%, rgba(255,255,255,.04), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #000 100%);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit}
img{max-width:100%; display:block}
.container{width:100%; max-width:var(--max); margin:0 auto; padding:0 22px}
.sr-only{position:absolute; left:-9999px}

.muted{color:var(--muted)}
.tag{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border:1px solid var(--line);
  background:rgba(0,0,0,.35);
  border-radius:999px;
  color:rgba(255,255,255,.86);
  font-size:13px;
}

/* TOPBAR */
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(5,7,9,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.brand-logo{
  width:44px; height:44px; border-radius:12px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
}
.brand-title{font-weight:800; letter-spacing:.10em}
.brand-subtitle{font-size:12px; color:var(--muted); margin-top:2px}

.nav{display:flex; gap:12px; align-items:center}
.nav-link{
  text-decoration:none;
  color:rgba(255,255,255,.82);
  font-size:14px;
  padding:10px 12px;
  border-radius:12px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  border:1px solid transparent;
}
.nav-link:hover{
  background:rgba(255,255,255,.06);
  border-color:var(--line);
  transform: translateY(-1px);
}
.nav-link.is-cta{
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.06);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

/* MOBILE NAV */
.nav-toggle{
  display:none;
  width:44px; height:40px; border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  cursor:pointer;
}
.nav-toggle span{
  display:block; height:2px; width:18px; margin:6px auto;
  background:rgba(255,255,255,.85);
  border-radius:2px;
}

/* HERO */
.hero{
  position:relative;
  min-height:100vh; /* altura total real */
  display:flex;
  align-items:center;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding-top:80px; /* espacio para el header */
  padding-bottom:40px;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.25)
  );
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  padding:72px 0;
}
.hero-card{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(10,15,18,.75), rgba(0,0,0,.35));
  border-radius:var(--radius2);
  padding:26px;
  box-shadow: var(--shadow);
}
.kicker{
  color:rgba(255,255,255,.78);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
}
.hero-card h1{
  margin:10px 0 10px;
  font-size:44px;
  line-height:1.05;
}
.lead{
  color:rgba(234,242,247,.76);
  font-size:16px;
  line-height:1.6;
  margin:0 0 18px;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}
.hero-badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.chip{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.82);
}

.hero-panel{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(11,17,22,.82), rgba(0,0,0,.35));
  border-radius:var(--radius2);
  padding:22px;
  box-shadow: var(--shadow);
}
.panel-title{font-weight:800; font-size:18px}
.panel-sub{color:var(--muted); margin:6px 0 14px; font-size:14px}
.panel-mini{margin-top:14px; display:grid; gap:10px}
.mini-item{display:flex; gap:10px; align-items:center}
.mini-dot{
  width:10px; height:10px; border-radius:99px;
  background:rgba(255,255,255,.75);
  box-shadow: 0 0 18px rgba(255,255,255,.30);
}
.mini-text{color:rgba(255,255,255,.82); font-size:13px}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid transparent;
  text-decoration:none;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  font-weight:700;
}
.btn:hover{transform: translateY(-1px)}
.btn-primary{
  background:rgba(255,255,255,.92);
  color:#0b1116;
  border-color:rgba(255,255,255,.25);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.btn-primary:hover{background:#fff}
.btn-ghost{
  background:rgba(255,255,255,.05);
  border-color:var(--line);
  color:rgba(255,255,255,.92);
}
.btn-soft{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
  color:rgba(255,255,255,.90);
}

.ico-search{font-weight:900}

/* VALIDATE FORMS */
.validate-form{margin-top:0}
.validate-row{
  display:flex; gap:10px; align-items:center;
}
.validate-row input{
  width:100%;
  height:46px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.38);
  color:rgba(255,255,255,.90);
  padding:0 14px;
  outline:none;
}
.validate-row input:focus{
  border-color:rgba(255,255,255,.28);
  box-shadow: 0 0 0 4px rgba(255,255,255,.06);
}
.validate-hint{margin-top:10px; font-size:12px; color:rgba(234,242,247,.62)}
.validate-form.big .validate-row input{height:52px}

/* QUOTE */
.quote{
  border-bottom:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent);
}
.quote-inner{
  padding:34px 0;
  display:flex; gap:14px; align-items:flex-start;
}
.quote-mark{
  font-size:42px; line-height:1;
  color:rgba(255,255,255,.55);
}
blockquote{margin:0; font-size:18px; line-height:1.6; color:rgba(255,255,255,.86)}
blockquote span{display:block; margin-top:8px; font-size:13px; color:var(--muted)}

/* SECTIONS */
.section{padding:70px 0}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{margin-bottom:22px}
.section-head h2{margin:0 0 10px; font-size:34px}
.section-head p{margin:0; color:var(--muted); max-width:900px; line-height:1.6}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.card{
  border:1px solid var(--line);
  background:rgba(0,0,0,.32);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
}
.card h3{margin:0 0 10px; font-size:18px}
.list{margin:12px 0 0; padding-left:18px; color:rgba(255,255,255,.82)}
.list li{margin:10px 0}
.list.big li{margin:12px 0; font-size:15px}

.pill-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.86);
  font-size:13px;
}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

/* MAGAZINE */
.magazine{
  display:grid;
  grid-template-columns: .8fr 1.2fr;
  gap:20px;
  align-items:center;
}
.mag-cover{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.mag-cover img{width:100%; height:auto; transform: scale(1.02)}
.mag-glow{
  position:absolute; inset:-20px;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.16), transparent 60%);
  pointer-events:none;
}
.mag-info h3{margin:10px 0 10px; font-size:22px}
.mag-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.mag-note{margin-top:12px; color:rgba(234,242,247,.55); font-size:12px}

/* STATS */
.section-stats{
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(255,255,255,.05), transparent 60%),
    radial-gradient(900px 500px at 80% 40%, rgba(255,255,255,.03), transparent 60%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.stat{
  border:1px solid var(--line);
  background:rgba(0,0,0,.28);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
}
.stat-ico{font-size:22px; opacity:.9}
.stat-num{
  margin-top:10px;
  font-size:30px;
  font-weight:900;
  letter-spacing:.02em;
}
.stat-label{margin-top:6px; color:var(--muted); font-size:13px}

/* VALIDATE SPLIT */
.validate-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
  align-items:center;
}
.validate-media{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.validate-media img{width:100%; height:auto}
.validate-badge{
  position:absolute;
  left:14px; bottom:14px;
  display:flex; gap:12px; align-items:center;
  padding:12px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
}
.validate-badge img{
  width:64px; height:64px; border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
}
.small-title{font-weight:800}
.mini-cards{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.mini-card{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.85);
  font-size:13px;
}

/* BENEFITS */
.benefits-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.benefit{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(0,0,0,.25);
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
  padding:16px;
  min-height:260px;
}
.benefit-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  opacity:.22;
  transform: scale(1.03);
}
.benefit-ico{position:relative; font-size:22px}
.benefit h3{position:relative; margin:10px 0 10px; font-size:16px}
.benefit p{position:relative; margin:0; color:rgba(234,242,247,.70); line-height:1.5}

/* CENTERS CTA */
.center-cta{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:18px;
  align-items:stretch;
}
.center-media{
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.center-media img{width:100%; height:100%; object-fit:cover}
.center-copy{
  border:1px solid var(--line);
  background:rgba(0,0,0,.25);
  border-radius:22px;
  padding:20px;
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
}

/* FOOTER */
.footer{
  margin-top:20px;
  border-top:1px solid var(--line);
  background:rgba(0,0,0,.55);
}
.footer-grid{
  padding:38px 0;
  display:grid;
  grid-template-columns: 1.1fr .7fr 1.2fr;
  gap:18px;
}
.footer-brand{display:flex; gap:12px; align-items:center; text-decoration:none}
.footer-logo{width:44px; height:44px; border-radius:12px}
.footer-title{font-weight:900; letter-spacing:.10em}
.footer-muted{color:var(--muted); font-size:13px}
.footer-note{margin:12px 0 0; color:rgba(234,242,247,.70); line-height:1.6}
.footer-head{font-weight:800; margin-bottom:10px}
.footer-link{
  display:block;
  color:rgba(255,255,255,.82);
  text-decoration:none;
  padding:8px 0;
}
.footer-link:hover{color:#fff}
.footer-validate .validate-row input{height:48px}
.validate-form .btn{padding:12px 14px}
.social{margin-top:12px}
.social-link{
  display:inline-flex; align-items:center; gap:10px;
  text-decoration:none;
  color:rgba(255,255,255,.82);
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
}
.social-link:hover{background:rgba(255,255,255,.06)}
.ico{
  width:24px; height:24px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:9px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  font-weight:900;
}

.footer-bottom{
  padding:16px 0 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid var(--line);
}
.footer-toplink{text-decoration:none}
.footer-toplink:hover{color:#fff}

/* RESPONSIVE */
@media (max-width: 980px){
  .hero-inner{grid-template-columns: 1fr; padding:54px 0}
  .hero-card h1{font-size:38px}
  .grid-2{grid-template-columns:1fr}
  .magazine{grid-template-columns:1fr}
  .stats-grid{grid-template-columns: repeat(2, 1fr)}
  .benefits-grid{grid-template-columns: repeat(2, 1fr)}
  .validate-split{grid-template-columns:1fr}
  .center-cta{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .nav{display:none}
  .nav-toggle{display:block}
  .nav.is-open{
    display:flex;
    position:absolute;
    right:22px;
    top:64px;
    flex-direction:column;
    gap:6px;
    padding:12px;
    border:1px solid var(--line);
    background:rgba(0,0,0,.78);
    border-radius:16px;
    box-shadow: var(--shadow);
  }
}

@media (max-width: 520px){
  .hero-card h1{font-size:32px}
  .stats-grid{grid-template-columns:1fr}
  .benefits-grid{grid-template-columns:1fr}
}






/* ===========================
   QUOTE EDITORIAL BLANCA
=========================== */

.quote-editorial{
  background:#ffffff;
  padding:140px 0;
  position:relative;
  overflow:hidden;
}

.quote-editorial-inner{
  max-width:1000px;
  margin:0 auto;
  text-align:center;
  position:relative;
}

.quote-big-mark{
  position:absolute;
  top:-60px;
  left:50%;
  transform:translateX(-50%);
  font-size:260px;
  font-weight:900;
  color:rgba(0,0,0,0.05);
  pointer-events:none;
  user-select:none;
}

.quote-editorial-text{
  position:relative;
  font-size:48px;
  font-weight:800;
  line-height:1.2;
  color:#111111;
  margin:0;
  letter-spacing:-0.02em;
}

.quote-highlight{
  position:relative;
  display:inline-block;
  font-weight:900;
}

.quote-highlight{
  font-size:inherit;
  font-weight:900;
  color:#000;
}

.quote-highlight{
  font-size:1.1em;
  font-weight:900;
  color:#000;
  border-bottom:4px solid #000;
  padding-bottom:2px;
}

.quote-editorial-author{
  margin-top:40px;
  font-size:14px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#666666;
}

/* Responsive */

@media (max-width: 900px){
  .quote-editorial-text{
    font-size:36px;
  }
  .quote-big-mark{
    font-size:180px;
    top:-40px;
  }
}

@media (max-width: 500px){
  .quote-editorial-text{
    font-size:26px;
  }
  .quote-big-mark{
    font-size:120px;
    top:-20px;
  }
}























/* ===============================
   ESTADISTICAS PRO BLANCO
================================ */

.section-stats-pro{
  background:#ffffff;
  padding:120px 0;
  border-top:1px solid #eaeaea;
  border-bottom:1px solid #eaeaea;
}

.stats-head h2{
  color:#111;
}

.stats-head p{
  color:#666;
}

.stats-grid-pro{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:30px;
  margin-top:50px;
}

.stat-pro{
  text-align:center;
  padding:40px 20px;
  border-radius:20px;
  border:1px solid #eaeaea;
  transition: all .3s ease;
}

.stat-pro:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.stat-ico-pro{
  width:70px;
  height:70px;
  margin:0 auto 20px;
  color:#111;
}

.stat-ico-pro svg{
  width:100%;
  height:100%;
}

.stat-num{
  font-size:42px;
  font-weight:900;
  color:#000;
  margin-bottom:8px;
}

.stat-label-pro{
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#555;
}

/* Responsive */

@media (max-width: 1000px){
  .stats-grid-pro{
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 600px){
  .stats-grid-pro{
    grid-template-columns:1fr;
  }
}












/* ==============================
   FOOTER VIDEO FULL WIDTH
============================== */

.footer-video{
  position:relative;
  width:100%;
  overflow:hidden;
  color:#fff;
}

/* Video fondo */
.footer-bg-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;

  /* 🔥 aquí está la clave */
  object-position: center bottom;

  z-index:0;
}



/* Overlay oscuro elegante */
.footer-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.92)
  );
  z-index:1;
}

/* Contenido encima */
.footer-content{
  position:relative;
  z-index:2;
  padding:100px 0 40px 0;
}

/* Ajustes para fondo oscuro */

.footer-video .footer-muted{
  color:rgba(255,255,255,.65);
}

.footer-video .footer-link{
  color:rgba(255,255,255,.85);
}

.footer-video .footer-link:hover{
  color:#fff;
}

.footer-video .footer-head{
  font-weight:800;
  margin-bottom:12px;
}

.footer-video .footer-note{
  color:rgba(255,255,255,.75);
}

/* Inputs modo oscuro */
.footer-video .validate-row input{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
}

.footer-video .validate-row input::placeholder{
  color:rgba(255,255,255,.5);
}

.footer-video .validate-hint{
  color:rgba(255,255,255,.5);
}

























/* ==================================
   REVISTA – PREMIUM INSTITUCIONAL
================================== */

.section-revista-white{
  background:#f9f9f9;
  padding:140px 0;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
}

.section-revista-white .section-head h2{
  color:#111;
  font-size:34px;
}

.section-revista-white .section-head p{
  color:#666;
  max-width:700px;
}

/* Layout principal mejorado */
.magazine{
  display:grid;
  grid-template-columns: 340px 1fr;
  gap:80px;
  align-items:center;
  margin-top:60px;
}

/* REVISTA MOCKUP */
.mag-cover{
  width:100%;
  max-width:340px;
  aspect-ratio:3/4;
  border-radius:18px;
  overflow:hidden;
  border:1px solid #eaeaea;
  background:#fff;
  box-shadow:
    0 30px 60px rgba(0,0,0,.12),
    0 10px 20px rgba(0,0,0,.05);
  transition:all .4s ease;
}

.mag-cover:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:
    0 40px 80px rgba(0,0,0,.18),
    0 15px 30px rgba(0,0,0,.08);
}

.mag-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Info lateral */
.mag-info{
  background:#fff;
  padding:50px;
  border-radius:20px;
  border:1px solid #eaeaea;
  box-shadow:0 20px 40px rgba(0,0,0,.05);
}

.mag-info h3{
  font-size:28px;
  color:#111;
  margin:18px 0;
}

.mag-info .muted{
  color:#666;
  font-size:16px;
  line-height:1.6;
}

/* Tag elegante */
.section-revista-white .tag{
  background:#111;
  color:#fff;
  border:none;
  font-size:12px;
  letter-spacing:.08em;
}

/* BOTONES MEJORADOS */
.mag-actions{
  margin-top:30px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.mag-actions .btn-primary{
  padding:14px 24px;
  font-weight:700;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.mag-actions .btn-soft{
  background:#fff;
  border:2px solid #111;
  color:#111;
  font-weight:600;
  padding:14px 24px;
}

.mag-actions .btn-soft:hover{
  background:#111;
  color:#fff;
}

/* Nota */
.mag-note{
  margin-top:25px;
  font-size:13px;
  color:#999;
}

/* Responsive */
@media (max-width:1000px){
  .magazine{
    grid-template-columns:1fr;
    text-align:center;
  }

  .mag-info{
    padding:35px;
  }

  .mag-actions{
    justify-content:center;
  }

  .mag-cover{
    margin:0 auto;
  }
}






/* =========================================
   SISTEMA GLOBAL FONDO BLANCO HEXÁGONOS
   (Quote, Stats, Revista, Beneficios)
========================================= */

.quote-editorial,
.section-stats-pro,
.section-revista-white,
.section-benefits-white{
  position:relative;
  overflow:hidden;
}

/* Hexágonos sutiles */
.quote-editorial::before,
.section-stats-pro::before,
.section-revista-white::before,
.section-benefits-white::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='110,15 205,60 205,160 110,205 15,160 15,60' fill='none' stroke='%23000000' stroke-opacity='0.025' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat:repeat;
  background-size:220px;
  pointer-events:none;
  z-index:0;
}

/* Asegura que el contenido quede arriba */
.quote-editorial > *,
.section-stats-pro > *,
.section-revista-white > *,
.section-benefits-white > *{
  position:relative;
  z-index:1;
}






/* ==================================
   BENEFICIOS BLANCO PREMIUM
================================== */

.section-benefits-white{
  padding:140px 0;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
}

.section-benefits-white .section-head h2{
  color:#111;
}

.section-benefits-white .section-head p{
  color:#666;
}

.benefits-grid-white{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  margin-top:60px;
}

.benefit-white{
  background:#ffffff;
  border:1px solid #eaeaea;
  border-radius:26px;
  padding:60px 40px;
  transition:all .35s ease;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.benefit-white:hover{
  transform:translateY(-12px);
  box-shadow:0 35px 90px rgba(0,0,0,.12);
}

.benefit-ico-white{
  width:110px;
  height:110px;
  margin:0 auto 40px;
  border-radius:50%;
  background:linear-gradient(145deg,#fafafa,#f0f0f0);
  border:1px solid #eaeaea;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  transition:all .4s ease;
}

.benefit-white:hover .benefit-ico-white{
  background:#111;
  color:#fff;
  transform:scale(1.08);
}

.benefit-ico-white svg{
  width:42px;
  height:42px;
}

.benefit-white h3{
  font-size:18px;
  margin-bottom:12px;
  color:#111;
}

.benefit-white p{
  font-size:15px;
  color:#666;
  line-height:1.6;
}

/* Responsive */

@media (max-width:1000px){
  .benefits-grid-white{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:600px){
  .benefits-grid-white{
    grid-template-columns:1fr;
  }
}















.section-benefits-white{
  background:#ffffff;
  padding:140px 0;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
}

.section-benefits-white h2,
.section-benefits-white h3{
  color:#111;
}

.muted-dark{
  color:#666 !important;
}






























/* ===== HERO EPMEX LOGO PREMIUM ===== */

.hero-card-epmex{
  position:relative;
  padding-top:120px; /* más espacio para logo grande */
}

/* contenedor del logo */
.hero-logo-wrap{
  position:absolute;
  top:-65px;
  left:40px;
}

/* LOGO GRANDE SIN RECUADRO */
.hero-logo{
  width:170px;
  height:auto;
  filter:
    drop-shadow(0 0 25px rgba(255,255,255,.55))
    drop-shadow(0 0 60px rgba(255,255,255,.35))
    drop-shadow(0 15px 40px rgba(0,0,0,.45));
  transition:transform .3s ease;
}

/* micro movimiento elegante */
.hero-logo:hover{
  transform:translateY(-4px) scale(1.03);
}

/* Responsive */
@media (max-width:900px){

  .hero-logo-wrap{
    left:50%;
    transform:translateX(-50%);
  }

  .hero-logo{
    width:140px;
  }
}








/* =============================
   BOTÓN VOLVER ARRIBA
============================= */

.back-to-top{
  position: fixed;
  left: 20px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.15);
  background: #0b0b0c;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s ease;
  z-index: 999;
}

.back-to-top:hover{
  transform: translateY(0) scale(1.08);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.back-to-top.show{
  opacity: 1;
  transform: translateY(0);
}