/* =========================
   Premium + estilo referencia (verde)
   ========================= */

:root{
  --bg: #0b0f17;
  --bg-2: #0f1522;

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted-2: rgba(255,255,255,.55);

  --surface: #ffffff;
  --surfaceText: #111827;
  --surfaceMuted: #4b5563;

  --border: rgba(255,255,255,.12);

  /* Verde (ajústalo según tu logo) */
  --green: #3bb078;
  --green-2: #008f5d;
  --green-dark: #008f5d;

  --radius: 18px;
  --radius-lg: 26px;

  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --shadow-soft: 0 10px 40px rgba(0,0,0,.35);

  --container: 1160px;
}

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

body{
  margin:0;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(34,197,94,.18), transparent 55%),
    radial-gradient(900px 500px at 10% 10%, rgba(52,211,153,.16), transparent 55%),
    linear-gradient(180deg, var(--bg), #070a10 60%, #05070c);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.45;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity:.92; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link{
  position:absolute;
  left:-999px; top: 8px;
  background:#fff; color:#000;
  padding:10px 12px; border-radius:12px;
  z-index:9999;
}
.skip-link:focus{ left: 12px; }

.muted{ color: var(--muted); }
.fineprint{ margin-top: 14px; color: var(--muted-2); font-size: 12px; }

/* =========================
   Buttons
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.btn--primary{
  border-color: rgba(34,197,94,.35);
  background: linear-gradient(135deg, rgba(34,197,94,.35), rgba(52,211,153,.22));
}
.btn--ghost{ background: transparent; }
.btn--ghostOnDark{
  border-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
}
.btn--outlineOnGreen{
  border: 1px solid rgba(255,255,255,.70);
  background: transparent;
  color: #ffffff;
}
.btn--outlineOnGreen:hover{
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

/* ===== WhatsApp button (icon + label) ===== */
.btn--whatsapp{

  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn__icon{
  width: 18px;
  height: 18px;
  display: block;
}
/* =========================
   Header
   ========================= */
.header{
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999 !important;
  transform: none !important;

  background: rgba(11,15,23,.70);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.brand__logo{
  height: 34px;
  width: auto;
  display:block;
}

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav__menu{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  row-gap: 6px;
  list-style:none;
  margin:0;
  padding:0;
}
.nav__link{
  color: var(--muted);
  font-weight: 400;
  padding: 8px 8px;
  border-radius: 12px;
  transition: background .15s ease, color .15s ease;
}
.nav__link:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.nav__cta{ margin-left: 4px; }

.nav__toggle{
  display:none;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.nav__toggle-icon{
  width: 18px; height: 12px;
  position: relative;
}
.nav__toggle-icon::before,
.nav__toggle-icon::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height:2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
}
.nav__toggle-icon::before{ top:0; }
.nav__toggle-icon::after{ bottom:0; }

/* =========================
   HERO (foto + overlay)
   ========================= */
.hero--photo{
  position: relative;
  padding: 92px 0 64px;
  min-height: 520px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.65)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero__center{
  text-align: center;
  max-width: 82ch;
}

.hero__kicker{
  margin: 0 0 10px;
  color: rgba(255,255,255,.75);
  font-weight: 900;
  letter-spacing: .35px;
  text-transform: uppercase;
  font-size: 12px;
}

.hero__title{
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.hero__lead{
  margin: 0 auto 18px;
  max-width: 60ch;
  color: rgba(255,255,255,.78);
}

.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 0;
}

.hero__actions--center{
  justify-content: center;
}

.hero__logos{
  margin-top: 26px;
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.60);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .25px;
}

/* =========================
   Sections / Grids
   ========================= */
.section{
  padding: 56px 0;
}

.section__header{
  margin-bottom: 22px;
  max-width: none;
}
.section__header--center{
  text-align: left;
  margin-inline: auto;
}

.section__kicker{
  margin: 0 0 8px;
  color: var(--muted-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-size: 12px;
}
.section__title{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.3px;
}
.section__lead{
  margin: 0;
  color: var(--muted);
}

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

/* =========================
   Dark cards
   ========================= */
.card{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.card__title{ margin:0 0 8px; font-size: 16px; }
.card__text{ margin:0; color: var(--muted); }

/* =========================
   White sections
   ========================= */
.section--white{
  background: var(--surface);
  color: var(--surfaceText);
}

.section--white .section__kicker--dark{ color: #6b7280; }
.section--white .section__title--dark{ color: #111827; }
.section--white .section__lead--dark{ color: var(--surfaceMuted); }

.section--white .service,
.section--white .post,
.section--white .form,
.section--white .contact-card,
.section--white .feature{
  background: #ffffff;
  border: 1px solid rgba(17,24,39,.10);
  color: #111827;
  box-shadow: 0 10px 30px rgba(17,24,39,.06);
}

.section--white .service__list,
.section--white .service__text,
.section--white .post__excerpt,
.section--white .contact-card__list,
.section--white .note,
.section--white .feature__text{
  color: #374151;
}

.section--white .service__link,
.section--white .post__link{
  color: var(--green-2);
  font-weight: 900;
}

.section--white .input{
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(17,24,39,.14);
}
.section--white .input:focus{
  border-color: rgba(34,197,94,.45);
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}

/* =========================
   Features (beneficios con iconos verdes)
   ========================= */
.feature{
  padding: 18px;
  border-radius: var(--radius);
}
.feature__icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(34,197,94,.35);
  background: rgba(34,197,94,.08);
  margin-bottom: 10px;
}
.feature__title{ margin: 0 0 8px; }
.feature__text{ margin: 0; }

/* =========================
   Services (cards blancas)
   ========================= */
.service{
  padding: 18px;
  border-radius: var(--radius);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.service:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(17,24,39,.10);
  border-color: rgba(34,197,94,.22);
}
.service__title{ margin: 0 0 10px; }
.service__list{
  margin: 0 0 12px;
  padding-left: 18px;
}
.service__text{ margin: 0 0 12px; }

/* =========================
   Solutions (dark section)
   ========================= */
.list-card{
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.list-card__title{ margin:0 0 10px; }

.checklist{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap: 10px;
}
.checklist li{
  display:flex;
  gap: 10px;
  color: var(--muted);
}
.checklist li::before{
  content:"";
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 7px;
  border: 1px solid rgba(34,197,94,.35);
  background: rgba(34,197,94,.10);
}

.quote-card{
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(700px 400px at 20% 0%, rgba(34,197,94,.12), transparent 55%),
    rgba(255,255,255,.05);
}
.quote-card__kicker{
  margin:0 0 8px;
  color: var(--muted-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-size: 12px;
}
.quote-card__quote{
  margin:0 0 14px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}
.quote-card__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================
   Blog cards (blanco)
   ========================= */
.post{
  padding: 18px;
  border-radius: var(--radius);
}
.post__img{
  height: 160px;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.10);
  background-size: cover;
  background-position: center;
  background-color: #f3f4f6;
  margin-bottom: 12px;
}
.post__title{ margin: 0 0 8px; }
.post__excerpt{ margin: 0 0 12px; }

/* =========================
   Contact
   ========================= */
.contact-card{
  padding: 18px;
  border-radius: var(--radius-lg);
}
.contact-card__title{ margin: 0 0 10px; }
.contact-card__list{
  margin: 0 0 12px;
  padding: 0;
  list-style:none;
  display:grid;
  gap: 10px;
}
.note{
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(17,24,39,.03);
  padding: 12px;
}

.form{
  padding: 18px;
  border-radius: var(--radius-lg);
}
.form__row{ display:grid; gap: 8px; margin-bottom: 12px; }
.label{
  font-weight: 900;
  font-size: 12px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .35px;
}
.input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
}
.input:focus{
  border-color: rgba(34,197,94,.38);
  box-shadow: 0 0 0 6px rgba(34,197,94,.10);
}

/* =========================
   CTA Verde
   ========================= */
.ctaGreen{
  padding: 54px 0;
  background: linear-gradient(90deg, var(--green-2), var(--green));
  color: #ffffff;
}
.ctaGreen__inner{
  text-align:center;
  max-width: 70ch;
  margin-inline: auto;
}
.ctaGreen__title{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.3px;
}
.ctaGreen__text{
  margin: 0 0 18px;
  color: rgba(255,255,255,.92);
}

/* =========================
   Footer
   ========================= */
.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  background: rgba(0,0,0,.22);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__nav{
  display:flex;
  gap: 14px;
  color: var(--muted);
  font-weight: 800;
}
.footer__copy{
  color: var(--muted-2);
}
.footer__logo{
  height: 28px;
  width: auto;
  display:block;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px){
  .grid3{ grid-template-columns: 1fr 1fr; }
  .grid2{ grid-template-columns: 1fr; }
}

@media (max-width: 740px){
  .nav__toggle{ display:inline-flex; }
  .nav__menu{
    display:none;
    position:absolute;
    top: 62px;
    right: 20px;
    left: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(11,15,23,.92);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    z-index: 60;
  }
  .nav__menu--open{ display:flex; }
  .nav__cta{ display:none; }
  .grid3{ grid-template-columns: 1fr; }
}
/* =========================
   Magazine / Revista elegante
   ========================= */

.magazineHeader{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 16px;
}
.magazineHeader__actions{ display:flex; gap: 10px; }

.btn--pill{
  border-color: rgba(17,24,39,.12);
  background: #f5f6f8;
  color: #111827;
}
.btn--outlineDark{
  border: 1px solid rgba(17,24,39,.18);
  background: transparent;
  color: #111827;
}

.magazineGrid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.magCard{
  border-radius: 20px;
  border: 1px solid rgba(17,24,39,.10);
  background: #f5f6f8;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(17,24,39,.06);
  transition: transform .15s ease, box-shadow .15s ease;
  display:flex;
  flex-direction: column;
}
.magCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(17,24,39,.10);
}

.magCard__media{
  display:block;
  height: 190px;
  overflow:hidden;
}
.magCard__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  transition: transform .25s ease;
}
.magCard:hover .magCard__media img{ transform: scale(1.03); }

.magCard__body{
  padding: 16px;
}

.magCard__title{
  margin: 8px 0 8px;
  font-size: 18px;
  letter-spacing: -0.2px;
  line-height: 1.2;
}
.magCard__title a{ color: #111827; }
.magCard__excerpt{
  margin: 0 0 12px;
  color: #374151;
}
.magCard__link{
  color: var(--green-2);
  font-weight: 900;
}

.magCard--featured .magCard__media{ height: 260px; }
.magCard--featured .magCard__title{ font-size: 22px; }

.meta{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: wrap;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2px;
}
.meta--dark{ color: rgba(255,255,255,.70); }
.dotSep{ opacity:.7; }

.tag{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.18);
  color: #0f5f34;
}
.tag--soft{
  background: rgba(17,24,39,.04);
  border-color: rgba(17,24,39,.10);
  color: #111827;
}

.magFooter{
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

/* Página de artículo */
.articleHero{
  padding: 36px 0 24px;
  background:
    radial-gradient(800px 400px at 20% 10%, rgba(34,197,94,.18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.30));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.articleHero__inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: center;
}
.articleHero__title{
  margin: 10px 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.5px;
}
.articleHero__lead{
  margin: 0;
  color: rgba(255,255,255,.78);
  max-width: 60ch;
}
.byline{
  display:inline-flex;
  margin-top: 12px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
}
.articleHero__image{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,.04);
}
.articleHero__image img{
  width:100%;
  height: 320px;
  object-fit: cover;
  display:block;
}

/* Layout de lectura */
.article{
  padding: 32px 0 56px;
}
.article__inner{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
  align-items: start;
}
.article__content{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 22px;
}
.article__content p{
  color: rgba(255,255,255,.82);
  margin: 0 0 14px;
}
.article__content h2{
  margin: 18px 0 10px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.article__content ul{
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255,255,255,.82);
}
.lead{
  font-size: 16px;
  color: rgba(255,255,255,.86);
}

blockquote{
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 3px solid rgba(34,197,94,.55);
  background: rgba(34,197,94,.10);
  border-radius: 16px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

.articleCTA{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(34,197,94,.22);
  background: rgba(34,197,94,.10);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.articleCTA h3{ margin: 0 0 6px; }
.articleCTA p{ margin: 0; color: rgba(255,255,255,.78); }

.article__sidebar{
  position: sticky;
  top: 90px;
  display:grid;
  gap: 12px;
}
.sideCard{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 16px;
}
.sideCard__title{
  margin: 0 0 10px;
  font-size: 14px;
  color: rgba(255,255,255,.86);
}
.sideList{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap: 10px;
}
.sideList a{
  color: rgba(255,255,255,.78);
  font-weight: 800;
}
.sideList a:hover{ color: #fff; }

.chips{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 980px){
  .magazineGrid{ grid-template-columns: 1fr 1fr; }
  .magCard--featured{ grid-column: 1 / -1; }
  .articleHero__inner{ grid-template-columns: 1fr; }
  .articleHero__image img{ height: 260px; }
  .article__inner{ grid-template-columns: 1fr; }
  .article__sidebar{ position: static; }
}

@media (max-width: 740px){
  .magazineGrid{ grid-template-columns: 1fr; }
  .magazineHeader{ flex-direction: column; align-items: flex-start; }
  .articleCTA{ flex-direction: column; align-items: flex-start; }
}
/* Iconos SVG en beneficios */
.feature__icon{
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(34,197,94,.35);
  background: rgba(34,197,94,.08);
  margin-bottom: 10px;
}

.feature__icon svg{
  width: 20px;
  height: 20px;
  stroke: var(--green-2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ===== Cards con icono (ABOUT) ===== */
.card--icon{
  position: relative;
}

.card__icon{
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  margin-bottom: 12px;

  border: 1px solid rgba(34,197,94,.28);
  background: rgba(34,197,94,.10);
}

.card__icon svg{
  width: 22px;
  height: 22px;
  stroke: var(--green-2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* micro detalle premium: al pasar el mouse */
.card--icon:hover .card__icon{
  transform: translateY(-1px);
  transition: transform .15s ease;
}
/* ===== Services con iconos ===== */

.service--icon{
  position: relative;
}

.service__icon{
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  margin-bottom: 14px;

  border: 1px solid rgba(34,197,94,.25);
  background: rgba(34,197,94,.08);

  transition: all .25s ease;
}

.service__icon svg{
  width: 22px;
  height: 22px;
  stroke: var(--green-2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* efecto premium */
.service:hover .service__icon{
  transform: translateY(-3px);
  background: rgba(34,197,94,.15);
  border-color: rgba(34,197,94,.45);
}
/* ===== Botón WhatsApp ===== */





/* efecto premium sutil */
/* ===== WhatsApp Button ===== */
.btn--whatsapp:hover {
  opacity: .95;
}
/* ===== Sección con imagen tipo hero ===== */

.section--photo{
  position: relative;
  color: white;
  background: #0f172a; /* fallback */
  overflow: hidden;
}

/* imagen */
.section--photo::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--section-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .25; /* aquí controlas intensidad */
  z-index: 0;
}

/* overlay oscuro elegante */
.section--photo::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,23,42,.85),
    rgba(15,23,42,.92)
  );
  z-index: 1;
}

/* contenido arriba */
.section--photo .container{
  position: relative;
  z-index: 2;
}
/* ===== Logros ===== */
.achGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 22px;
}

@media (max-width: 900px){
  .achGrid{ grid-template-columns: 1fr; }
}

.achCol{
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, .05);
}

.achCol__title{
  margin: 0 0 14px 0;
}

.achCol__badge{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .2px;
  color: #0b1f16;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.25);
}

.achCol__badge--soft{
  background: rgba(34,197,94,.10);
  border-color: rgba(34,197,94,.20);
}

.achItem{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;

  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, .06);
  background: rgba(2, 6, 23, .02);
}

.achItem + .achItem{
  margin-top: 12px;
}

.achItem__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;

  border: 1px solid rgba(34,197,94,.28);
  background: rgba(34,197,94,.08);
}

.achItem__icon svg{
  width: 22px;
  height: 22px;
  stroke: var(--green-2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.achItem__text{
  margin: 0;
  color: rgba(15,23,42,.85);
  font-weight: 600;
  line-height: 1.45;
}
/* ===== Soluciones (reemplaza bloque servicios) ===== */
.solutions .section__header{
  margin-bottom: 18px;
}

.solutions__layout{
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 1100px){
  .solutions__layout{
    grid-template-columns: 1fr;
  }
  .solutions__center{
    order: 3;
  }
}

/* Cards laterales */
.solCard{
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 10px 30px rgba(2,6,23,.05);
}

.solCard + .solCard{
  margin-top: 14px;
}

.solCard__head{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.solCard__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34,197,94,.28);
  background: rgba(34,197,94,.08);
}

.solCard__icon svg{
  width: 22px;
  height: 22px;
  stroke: var(--green-2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.solCard__title{
  margin: 0;
  font-size: 1.05rem;
}

.solCard__text{
  margin: 0 0 10px 0;
  color: rgba(15,23,42,.82);
  line-height: 1.55;
}

.solCard__link{
  font-weight: 700;
  color: var(--green-2);
  text-decoration: none;
}

.solCard__link:hover{
  text-decoration: underline;
}

/* Centro: mosaico de imágenes */
.solMosaic{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(2,6,23,.03);
  box-shadow: 0 18px 50px rgba(2,6,23,.08);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.solMosaic__item{
  border-radius: 18px;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,.08);
  height: 150px;
}

.solMosaic__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}

/* Un poco de dinamismo (composición irregular) */
.solMosaic__item--a{ height: 170px; }
.solMosaic__item--b{ height: 140px; margin-top: 14px; }
.solMosaic__item--c{ height: 140px; margin-top: -10px; }
.solMosaic__item--d{ height: 170px; }

/* ===== Soluciones (clean, sin collage) ===== */
.solutions__layout--clean{
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 1100px){
  .solutions__layout--clean{
    grid-template-columns: 1fr;
  }
  .solutions__center{ order: 3; }
}

/* Cards */
.solCard{
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(2,6,23,.05);
}

.solCard + .solCard{ margin-top: 14px; }

.solCard__head{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.solCard__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34,197,94,.28);
  background: rgba(34,197,94,.08);
}

.solCard__icon svg{
  width: 22px;
  height: 22px;
  stroke: var(--green-2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.solCard__title{ margin: 0; font-size: 1.05rem; }

.solCard__text{
  margin: 0 0 10px 0;
  color: rgba(15,23,42,.82);
  line-height: 1.55;
}

.solCard__link{
  font-weight: 800;
  color: var(--green-2);
  text-decoration: none;
}
.solCard__link:hover{ text-decoration: underline; }

/* Panel central */
.solPanel{
  border-radius: 22px;
  padding: 20px;
  border: 1px solid rgba(15,23,42,.10);
  background: linear-gradient(180deg, rgba(2,6,23,.02), rgba(2,6,23,.00));
  box-shadow: 0 18px 50px rgba(2,6,23,.08);
}

.solPanel__kicker{
  margin: 0 0 8px 0;
  font-weight: 900;
  letter-spacing: .18px;
  color: var(--green-2);
}

.solPanel__title{
  margin: 0 0 10px 0;
  font-size: 1.25rem;
}

.solPanel__text{
  margin: 0 0 12px 0;
  color: rgba(15,23,42,.82);
  line-height: 1.55;
}

.solPanel__list{
  margin: 0 0 16px 0;
  padding-left: 18px;
  color: rgba(15,23,42,.82);
}

.solPanel__list li{ margin: 8px 0; }

.solPanel__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* (Por si tu botón WhatsApp usa img) */
/* ===== Soluciones: Columna de imagen (izquierda) ===== */
.solutions__media{
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 22px;
  overflow: hidden;
  background-color: #ffffff !important; /* forzamos blanco */
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
  min-height: 420px;
}

.solutions__mediaImg{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Forzar fondo blanco en toda la sección */
.solutions{
  background-color: #ffffff !important;
}

/* Si quieres que en tablet/móvil la imagen no quede gigante */
@media (max-width: 1100px){
  .solutions__media{
    min-height: 240px;
  }
}
/* ===== Soluciones: texto en fondo blanco ===== */
.solutions .section__title{
  color: #0f172a !important;
}

.solutions .section__tag{
  color: #16a34a !important; /* verde principal */
}

.solutions .solCard__title{
  color: #0f172a !important;
}

.solutions .solCard__text{
  color: #475569 !important; /* gris elegante */
}
/* ===== Nuestras soluciones: 3 columnas (imagen + 2 cols cards) ===== */
.sol3__grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 1100px){
  .sol3__grid{
    grid-template-columns: 1fr;
  }
  .sol3__media{
    min-height: 260px;
  }
}

/* Columna 1: imagen */
.sol3__media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 50px rgba(2,6,23,.08);
  min-height: 520px;
  background: #fff;
}

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

/* Columnas 2 y 3: cards (usa tu estilo premium actual) */
.sol3__col .solCard + .solCard{
  margin-top: 14px;
}

/* ===== Metodología (oscuro + timeline) ===== */
.method--dark{
  position: relative;
  background: #0b1220;
  color: #fff;
}

.method--dark .section__kicker{
  color: rgba(255,255,255,.72);
}

.method--dark .section__title{
  color: #fff;
}

.method--dark .section__lead{
  color: rgba(255,255,255,.75);
}

.method__grid{
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 22px;
  margin-top: 18px;
  align-items: start;
}

@media (max-width: 1000px){
  .method__grid{
    grid-template-columns: 1fr;
  }
}


/* Timeline layout */
.timeline{
  position: relative;
  padding-left: 18px;
}

.timeline::before{
  content:"";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(34,197,94,.35);
}

.timeline__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.timeline__item{
  position: relative;
  padding-left: 18px;
}

.timeline__dot{
  position: absolute;
  left: 0;
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(34,197,94,.25);
  border: 1px solid rgba(34,197,94,.6);
  box-shadow: 0 0 0 6px rgba(34,197,94,.08);
}

.phase{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: center;

  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

@media (max-width: 520px){
  .phase{ grid-template-columns: 1fr; }
}

.phase__media{
  width: 90px;
  height: 90px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

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

.phase__title{
  margin: 0 0 6px 0;
  font-size: 1.05rem;
}

.phase__text{
  margin: 0;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

/* Panel derecho */
.methodAside{
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.methodAside__title{
  margin: 0 0 10px 0;
  font-size: 1.2rem;
}

.methodAside__text{
  margin: 0 0 14px 0;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
}

.methodAside__icons{
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.methodIcon{
  width: 40px;
  height: 40px;
  stroke: rgba(255,255,255,.85);
  stroke-width: 2;
  fill: none;
}

.methodIcon--warn{
  stroke: #fbbf24;
}

/* ===== Reveal on scroll (animación) ===== */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--d, 0ms);
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.reveal.is-visible .phase{
  border-color: rgba(34,197,94,.28);
  box-shadow: 0 18px 50px rgba(0,0,0,.25), 0 0 0 1px rgba(34,197,94,.10);
}
.reveal.is-visible .timeline__dot{
  background: rgba(34,197,94,.35);
  box-shadow: 0 0 0 7px rgba(34,197,94,.12);
}
@media (hover:hover){
  .phase:hover{
    transform: translateY(-2px);
    transition: transform .2s ease;
  }
}
/* ===== Fondo gris tenue ===== */
.section--soft{
  background: rgba(2,6,23,.04);
}
/* ===== Corrección colores sección gris ===== */

.industries .section__kicker,
.industries .section__title,
.industries .section__lead{
  color: #0f172a; /* azul oscuro elegante */
}

.industries .section__lead{
  color: rgba(15,23,42,.75);
}

/* ===== Industrias ===== */
.indGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

@media (max-width: 900px){
  .indGrid{ grid-template-columns: 1fr; }
}

.indCard{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(2,6,23,.05);
}

.indCard__head{
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.indCard__icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34,197,94,.28);
  background: rgba(34,197,94,.08);
}

.indCard__icon svg{
  width: 22px;
  height: 22px;
  stroke: var(--green-2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.indCard__title{
  margin: 0;
  font-size: 1.15rem;
}

.indCard__quote{
  margin: 0 0 12px 0;
  color: rgba(15,23,42,.78);
  font-style: italic;
  line-height: 1.5;
}

.indCard__list{
  margin: 0 0 12px 0;
  padding-left: 18px;
  color: rgba(15,23,42,.82);
}

.indCard__list li{ margin: 8px 0; }

.indCard__link{
  font-weight: 800;
  color: var(--green-2);
  text-decoration: none;
}
.indCard__link:hover{ text-decoration: underline; }

/* ===== Animación: aparece y desaparece con scroll ===== */
.revealToggle{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
  transition-delay: var(--d, 0ms);
}

.revealToggle.is-visible{
  opacity: 1;
  transform: translateY(0);
}
/* ===== Fondo gris plata ===== */
.section--soft{
  background: #f5f6f8;
}

/* ===== Grid industrias ===== */
.indGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 900px){
  .indGrid{ grid-template-columns: 1fr; }
}

/* ===== Card ===== */
.indCard{
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 30px rgba(2,6,23,.05);
  display: flex;
  flex-direction: column;
}

/* Imagen superior */
.indCard__media{
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

/* Contenido */
.indCard__content{
  padding: 20px;
}

.indCard__title{
  margin: 0 0 10px 0;
  font-size: 1.2rem;
}

.indCard__quote{
  margin: 0 0 14px 0;
  color: rgba(15,23,42,.75);
  font-style: italic;
  line-height: 1.5;
}

.indCard__list{
  margin: 0 0 14px 0;
  padding-left: 18px;
  color: rgba(15,23,42,.85);
}

.indCard__list li{
  margin: 6px 0;
}

.indCard__link{
  font-weight: 800;
  color: var(--green-2);
  text-decoration: none;
}

.indCard__link:hover{
  text-decoration: underline;
}

/* ===== Animación Scroll (entra y sale) ===== */
.revealToggle{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: var(--d, 0ms);
}

.revealToggle.is-visible{
  opacity: 1;
  transform: translateY(0);
}
/* ===== FIX: títulos dentro de cards (industries) ===== */
.industries .indCard,
.industries .indCard *{
  color: inherit;
}

.industries .indCard{
  color: #0f172a; /* color base dentro de la card */
}

.industries .indCard__title{
  color: #0f172a !important;
}

.industries .indCard__quote{
  color: rgba(15,23,42,.75) !important;
}

.industries .indCard__list{
  color: rgba(15,23,42,.85) !important;
}
/* ===== Nuestra Visión (fondo oscuro) ===== */
.vision--dark{
  background: #0b1220; /* azul oscuro base */
  color: #fff;
}

/* Header en oscuro */
.vision--dark .section__kicker{ color: rgba(255,255,255,.72); }
.vision--dark .section__title{ color: #fff; }
.vision--dark .section__lead{ color: rgba(255,255,255,.75); }

.vision .section__header--center{
  text-align: center;
}

/* Grid */
.vision__grid{
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 18px;
}

@media (max-width: 1100px){
  .vision__grid{ grid-template-columns: 1fr; }
}

/* Col 1: solo texto (sin marco, sin tarjeta) */
.vision__statement{
  padding: 0;              /* sin “tarjeta” */
  border: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  align-content: center;
}

.vision__big{
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.55;
  color: rgba(255,255,255,.90);
  font-style: italic;
}

/* Col 2: imagen */
.vision__media{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  background: rgba(255,255,255,.02);
  min-height: 360px;
}

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

/* Col 3: checklist (sí puede ser tarjeta para legibilidad) */
.vision__checks{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  padding: 18px;
  display: grid;
  gap: 14px;
  align-content: center;
}

.vCheck{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}

.vCheck__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34,197,94,.28);
  background: rgba(34,197,94,.08);
}

.vCheck__icon svg{
  width: 22px;
  height: 22px;
  stroke: var(--green-2);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* IMPORTANTE: forzamos estos textos para que NO se vuelvan blancos raros por reglas globales */
.vision--dark .vCheck__title{
  margin: 2px 0 4px 0;
  font-size: 1.05rem;
  color: #fff !important;
}

.vision--dark .vCheck__text{
  margin: 0;
  color: rgba(255,255,255,.78) !important;
  line-height: 1.5;
}

/* Ajuste: Soluciones con look/feel de Marcadores */
.solCard{
  transition: transform .2s ease, box-shadow .2s ease;
}
.solCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(2,6,23,.08);
}
#blog {
  background: #f4f6f9;
}

.btn--whatsapp:hover .btn__icon{ transform: scale(1.05); }



/* WhatsApp Widget */
.wa-fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
}

.wa-fab__icon{
  width: 26px;
  height: 26px;
  display: block;
}

.wa-widget{
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 10000;
  width: 320px;
  max-width: calc(100vw - 36px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  background: #fff;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}

.wa-widget.is-open{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.wa-widget__header{
  background: #1f8f4d;
  color: #fff;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wa-widget__title{
  display: grid;
  gap: 2px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-size: 13px;
}

.wa-widget__title span{
  opacity: .9;
  font-size: 12px;
}

.wa-widget__close{
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
}

.wa-widget__body{
  padding: 12px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.wa-widget__hello{
  margin: 0 0 10px 0;
  font-size: 13px;
  color: #111;
}

.wa-widget__cta{
  display: block;
  text-align: center;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
}

.wa-widget__hint{
  display: block;
  margin-top: 10px;
  color: rgba(0,0,0,.6);
  font-size: 11px;
}

.wa-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.28);
  z-index: 9998;
}
:root{
  --header-h: 76px; /* ajusta si tu header es más alto/bajo */
}

body{
  padding-top: var(--header-h);
}
/* ===== Scroll To Top ===== */
.scroll-top{
  position: fixed;
  right: 18px;
  bottom: 90px; /* arriba del WhatsApp */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: rgba(136, 136, 136, 0.85);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9999;
}

.scroll-top.show{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover{
  background: rgba(255,255,255,.15);
}

/* ===== Revista (listado) ===== */
.blogGrid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.blogCard{
  border: 1px solid rgba(17,24,39,.12);
  border-radius: var(--radius);
  background: #fff;
  color: var(--surfaceText);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.blogCard__title{
  margin: 0 0 8px 0;
  font-size: 20px;
  line-height: 1.2;
}
.blogCard__text{
  margin: 0 0 14px 0;
  color: var(--surfaceMuted);
}
.blogCard__link{
  font-weight: 700;
  color: #0f172a;
}
/* =========================
   Revista (revista.html)
   No rompe tu CSS: son clases nuevas
   ========================= */

.revista{
  padding-top: 96px; /* por tu header fixed */
}

.revista__header{
  padding: 36px 0 10px;
}

.revista__header h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -.3px;
}

.revista__header p{
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.revista__content{
  padding: 22px 0 60px;
  display: grid;
  gap: 26px;
}

/* Artículo */
.articulo{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
}

.articulo__header{
  margin-bottom: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.articulo h2{
  margin: 10px 0 10px;
  font-size: clamp(20px, 2.1vw, 28px);
  letter-spacing: -.2px;
  line-height: 1.15;
}

.articulo .lead{
  margin: 0;
  color: rgba(255,255,255,.78);
  max-width: 80ch;
}

/* Meta / tag */
.tag{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.16);
  border: 1px solid rgba(34,197,94,.28);
  color: rgba(99, 99, 99, 0.92);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .2px;
}

.meta{
  margin-left: 10px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

/* Contenido */
.articulo p{
  margin: 12px 0;
  color: rgba(255,255,255,.82);
  max-width: 90ch;
}

.articulo h3{
  margin: 18px 0 8px;
  font-size: 16px;
  color: rgba(255,255,255,.92);
  letter-spacing: .1px;
}

/* Responsive */
@media (min-width: 900px){
  .articulo{
    padding: 26px 28px;
  }
  .revista__content{
    gap: 22px;
  }
}
/* ===== Revista fondo claro ===== */
.revista{
  background: #f3f4f6;
  color: #111827;
}

.revista h1,
.revista h2,
.revista h3{
  color: #111827;
}

.revista p{
  color: #374151;
}

.revista .meta{
  color: #6b7280;
}
/* ===== Revista fondo variable ===== */
body.revista{
  --surface: #f3f4f6;
}
/* ==============================
   K360 TESTIMONIALS SLIDER
============================== */

.k360-testimonials {
  background: var(--bg-2); /* azul oscuro K360 */
  padding: 60px 0;
}

.k360-testimonials .section__kicker,
.k360-testimonials .section__title,
.k360-testimonials .section__lead {
  color: #ffffff;
}

.k360-testimonials__wrapper {
  position: relative;
  margin-top: 60px;
}

.k360-testimonials__viewport {
  overflow: hidden;
}

.k360-testimonials__track {
  display: flex;
  transition: transform 0.6s ease;
}

.k360-testimonial {
  min-width: 100%;
  padding: 40px 80px;
  text-align: center;
  color: #ffffff;
}

.k360-testimonial p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.k360-author {
  font-size: 0.95rem;
  color: var(--surfaceMuted);
  letter-spacing: 0.5px;
}

/* Flechas */

.k360-testimonials__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #249a64;
  background: transparent;
  color: #249a64;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s ease;
}

.k360-testimonials__arrow:hover {
  background: rgba(255,255,255,0.08);
}

.k360-prev {
  left: -70px;
}

.k360-next {
  right: -70px;
}

@media (max-width: 1024px) {
  .k360-prev { left: 10px; }
  .k360-next { right: 10px; }
}
/* 20 años */
.hero__highlight {
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.3px;
}