/* =================== VARIABLES DE MARCA =================== */
:root{
  --bg:#1C1C1E;
  --bg-2:#101012;
  --white:#FFFFFF;
  --muted:#A1A1A6;
  --green:#70a942;
  --green-dark:#39823d;
  --green-soft:rgba(112,169,66,.16);
  --border:rgba(255,255,255,.12);
  --shadow:0 24px 80px rgba(0,0,0,.38);
  --radius:28px;
  --container:1120px;
}

/* =================== RESET / BASE GENERAL =================== */
*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  background:var(--bg);
  color:var(--white);
  line-height:1.6;
  overflow-x:hidden;
}

/* =================== ELEMENTOS BASE =================== */
a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

/* =================== CONTENEDORES REUTILIZABLES =================== */
.container{
  width:min(var(--container),calc(100% - 32px));
  margin-inline:auto;
}

.narrow{
  max-width:850px;
}

/* =================== FONDOS DE SECCIÓN =================== */
.section-dark{
  background:radial-gradient(circle at top left,rgba(112,169,66,.16),transparent 36%),var(--bg-2);
}

.section-dark-soft{
  background:linear-gradient(180deg,#151516,#1C1C1E);
}

/* =================== HEADER / BARRA SUPERIOR =================== */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(16,16,18,.78);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
}

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

/* =================== LOGO / MARCA =================== */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-mark{
  font-family:'Archivo Black',sans-serif;
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  color:#fff;
  padding:10px 12px;
  border-radius:14px;
  letter-spacing:.04em;
}

.brand-copy{
  font-weight:800;
}

/* =================== MENÚ DE NAVEGACIÓN =================== */
.nav-menu{
  display:flex;
  gap:26px;
  color:var(--muted);
  font-weight:800;
}

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

.nav-toggle{
  display:none;
  background:transparent;
  color:white;
  border:0;
  font-size:30px;
}

/* =================== HERO / SECCIÓN PRINCIPAL =================== */
.hero{
  position:relative;
  padding:86px 0 78px;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:46px;
  align-items:center;
}










/* =================== TEXTOS GENERALES / TITULARES =================== */
.eyebrow{
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:var(--green);
  font-size:.78rem;
}

.eyebrow.dark{
  color:var(--green-dark);
}

h1,
h2,
h3{
  margin:0;
  line-height:1.05;
}

h1{
  font-family:'Archivo Black',sans-serif;
  font-size:clamp(2.35rem,6vw,5.45rem);
  letter-spacing:-.055em;
}

h1 span,
.gradient-text{
  background:linear-gradient(90deg,var(--green),#d7ff91,var(--green-dark));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

h2{
  font-family:'Archivo Black',sans-serif;
  font-size:clamp(2rem,4vw,3.7rem);
  letter-spacing:-.04em;
}

h3{
  font-size:1.35rem;
}

.hero-subtitle{
  font-size:clamp(1.05rem,2vw,1.34rem);
  color:#d7d7dc;
  max-width:720px;
  margin:24px 0 32px;
}

/* =================== BOTONES =================== */
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:15px 23px;
  font-weight:900;
  transition:.2s ease;
  border:1px solid transparent;
}

.btn-primary{
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  color:white;
  box-shadow:0 14px 40px rgba(112,169,66,.28);
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 52px rgba(112,169,66,.38);
}

.btn-secondary{
  border-color:var(--border);
  color:#fff;
  background:rgba(255,255,255,.06);
}

.btn-full{
  width:100%;
  margin-top:16px;
}

/* =================== SEÑALES DE CONFIANZA HERO =================== */
.trust-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:28px;
}

.trust-row span{
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:var(--muted);
  font-size:.9rem;
}

/* =================== IMAGEN HERO =================== */
.hero-image{
  margin:0;
  position:relative;
}

.hero-image img{
  border-radius:34px;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  background:#101012;
}

.hero-image figcaption{
  text-align:center;
  color:var(--muted);
  font-weight:800;
  margin-top:14px;
}

/* =================== EFECTOS DE LUZ / GLOW =================== */
.glow{
  position:absolute;
  border-radius:999px;
  filter:blur(90px);
  opacity:.6;
}

.glow-1{
  width:360px;
  height:360px;
  background:var(--green-dark);
  top:20%;
  left:-110px;
}

.glow-2{
  width:300px;
  height:300px;
  background:var(--green);
  bottom:-120px;
  right:10%;
}

/* =================== SECCIONES CLARAS / FONDO BLANCO =================== */
.diagnosis,
.program,
.offer,
.faq{
  padding:88px 0;
  background:var(--white);
  color:var(--bg);
}

.diagnosis p,
.program p,
.offer p,
.faq p{
  color:#4f4f55;
}

/* =================== SECCIONES OSCURAS / ESPACIADO GENERAL =================== */
.method,
.benefits,
.products,
.authority{
  padding:88px 0;
}
/* =================== LAYOUTS EN COLUMNAS =================== */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}

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

/* =================== LISTA DE PROBLEMAS / PAIN POINTS =================== */
.pain-list{
  display:grid;
  gap:16px;
}

.pain-list article{
  display:flex;
  gap:16px;
  padding:20px;
  border:1px solid rgba(28,28,30,.12);
  border-radius:22px;
  background:#f5f6f4;
}

.pain-list span{
  font-family:'Archivo Black';
  color:var(--green-dark);
}

.pain-list p{
  margin:0;
  color:#4f4f55;
}

/* =================== ENCABEZADOS DE SECCIÓN =================== */
.section-heading{
  text-align:center;
  max-width:840px;
  margin:0 auto 42px;
}

.section-heading p{
  font-size:1.08rem;
  color:var(--muted);
}

/* =================== GRIDS DE CARDS =================== */
.steps-grid,
.benefit-grid,
.products-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}


/* =================== SECCIÓN MÉTODO / CARDS CENTRADAS =================== */
.method .steps-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
  max-width:980px;
  margin:0 auto;
  justify-content:center;
}

/* =================== RESPONSIVE MÉTODO =================== */
@media (max-width:980px){
  .method .steps-grid{
    grid-template-columns:repeat(2, 1fr);
    max-width:720px;
  }
}

@media (max-width:560px){
  .method .steps-grid{
    grid-template-columns:1fr;
    max-width:100%;
  }
}

/* =================== CARDS BASE =================== */
.step-card,
.benefit,
.product-card{
  padding:28px;
  border-radius:24px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
}

.step-card span{
  font-family:'Archivo Black';
  font-size:2.4rem;
  color:var(--green);
}

.step-card p,
.benefit p,
.product-card p{
  color:var(--muted);
}

/* =================== SECCIÓN BENEFICIOS =================== */
.benefits{
  background:var(--white);
  color:var(--bg);
}

.benefits .section-heading p,
.benefit p{
  color:#4f4f55;
}

.benefit{
  background:#f5f6f4;
  border-color:#e5e7e1;
}

/* =================== SECCIÓN PROGRAMA / MÓDULOS =================== */
.sticky-copy{
  position:sticky;
  top:110px;
}

.modules{
  display:grid;
  gap:14px;
}

.modules details,
.faq-list details{
  border-radius:20px;
  border:1px solid rgba(28,28,30,.12);
  background:#f6f7f4;
  padding:20px;
}

.modules summary,
.faq-list summary{
  cursor:pointer;
  font-weight:900;
}

.modules p{
  margin-bottom:0;
}

/* =================== SECCIÓN PRODUCTOS ADICIONALES =================== */
/* =================== CARD FLEX =================== */
.product-card{
  position: relative;
}
/* =================== MAS VENDIDO =================== */


.product-badge{
  position:absolute;
  top:12px;
  left:12px;
  background:var(--green);
  color:white;
  padding:6px 10px;
  border-radius:10px;
  font-size:12px;
  font-weight:800;
  z-index:10; /* 🔥 evita que quede detrás */
}

.product-card .btn{
  margin-top:auto;
}

.product-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:var(--green-soft);
  font-size:28px;
  margin-bottom:18px;
}

.product-card:hover{
  transform:translateY(-4px);
  transition:.2s ease;
  border-color:rgba(112,169,66,.5);
}


/* =================== FOOTER FIJO ABAJO =================== */
.product-footer{
  margin-top:auto;
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* =================== PRECIO PRODUCTO =================== */

.product-card .product-price{
  font-family:'Archivo Black', sans-serif;
  font-size:2rem;
  margin:18px 0;
  text-align:center;
}

/* =================== COLORES =================== */
.product-card .product-price.price-1{
  color: var(--green);
}

.product-card .product-price.price-2{
  color:#d7ff91;
}
/* =================== ESPACIO IMAGEN -TITULO =================== */
.product-media{
  margin-bottom:14px;
}

.product-card h3{
  margin-top:26px;
}

/* =================== BOTÓN DENTRO DE PRODUCT CARD =================== */
/* =================== BOTÓN DENTRO DE PRODUCT CARD =================== */
.product-card .btn{
  position:relative;
  overflow:hidden;
  z-index:1;

  background:linear-gradient(135deg,var(--green),#a8ff60,var(--green-dark));
  color:#120101; /* 👈 negro */
  border:none;
  width:100%;
  margin-top:10px;

  font-weight:900;
  letter-spacing:0.02em;

  box-shadow:0 8px 24px rgba(112,169,66,.25);
}
/* =================== GLOW ANIMADO DEL BOTÓN =================== */
.product-card .btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:80%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.55),
    transparent
  );
  transform:skewX(-20deg);
  animation:btnGlow 2.8s infinite;
  z-index:-1;
}

/* =================== ANIMACIÓN =================== */
@keyframes btnGlow{
  0%{ left:-120%; }
  55%{ left:130%; }
  100%{ left:130%; }
}

/* =================== HOVER =================== */
.product-card .btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 36px rgba(112,169,66,.42);
}




/* =================== SECCIÓN AUTORIDAD =================== */
.authority-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  padding:42px;
  border-radius:var(--radius);
  background:linear-gradient(135deg,rgba(112,169,66,.16),rgba(255,255,255,.05));
  border:1px solid var(--border);
}

.authority-card p{
  font-size:1.15rem;
  color:#dfdfe4;
}

/* =================== SECCIÓN OFERTA / PRECIO =================== */
.offer-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:54px;
  align-items:center;
}

.countdown{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:28px;
}

.countdown div{
  text-align:center;
  background:#f2f4ef;
  border-radius:18px;
  padding:18px;
}

.countdown strong{
  display:block;
  font-family:'Archivo Black';
  font-size:2rem;
  color:var(--green-dark);
}

.pricing{
  background:#1C1C1E;
  color:white;
  border-radius:var(--radius);
  padding:34px;
  box-shadow:var(--shadow);
}

.pricing .tag{
  display:inline-block;
  background:var(--green-soft);
  color:#d7ff91;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
}

.pricing .price{
  font-family:'Archivo Black';
  font-size:3.6rem;
  color:white;
  margin:10px 0;
}

.pricing ul{
  padding-left:0;
  list-style:none;
  display:grid;
  gap:12px;
  color:#e4e4e8;
}

.pricing small{
  display:block;
  text-align:center;
  color:var(--muted);
  margin-top:12px;
}


/* =================== OFERTA PREMIUM / BONUSES =================== */

/* =================== OFERTA PREMIUM / BONUSES =================== */

.pricing-premium{
  border:1px solid rgba(112,169,66,.35);
  position:relative;
  overflow:hidden;
}

.pricing-premium::before{
  content:"";
  position:absolute;
  top:-80px;
  right:-80px;
  width:220px;
  height:220px;
  background:rgba(112,169,66,.18);
  filter:blur(70px);
  border-radius:999px;
}

.pricing-premium > *{
  position:relative;
  z-index:1;
}

/* =================== TITULO PROGRAMA =================== */
.pricing-title{
  color:#ffffff !important;
  font-weight:900;
  font-size:1.15rem;
  margin:8px 0 18px;
}

/* =================== BLOQUE PRECIO CENTRADO =================== */
.price-label,
.pricing .price{
  display:block;
  width:100%;
  text-align:center;
}

.price-label{
  color:var(--muted) !important;
  font-weight:800;
  margin:18px 0 10px;
}

.pricing .price{
  margin:0 0 24px;
  line-height:1;
}

/* =================== INCLUYE =================== */
.pricing-block{
  margin-top:22px;
}

.pricing-block h4{
  margin:0 0 12px;
  color:#ffffff;
  font-size:1rem;
}

.pricing-list{
  padding-left:0;
  list-style:none;
  display:grid;
  gap:12px;
  margin:0;
  color:#e4e4e8;
}

.pricing-list li{
  line-height:1.45;
}

/* =================== BONUSES =================== */
.bonus-box{
  margin-top:24px;
  padding:20px;
  border-radius:22px;
  background:rgba(112,169,66,.10);
  border:1px solid rgba(112,169,66,.30);
}

.bonus-label{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(112,169,66,.20);
  color:#d7ff91;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.08em;
}

.bonus-list strong{
  color:#d7ff91;
  font-weight:900;
}

/* =================== VALUE BOX =================== */
.value-box{
  margin-top:24px;
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  text-align:center;
}

.value-box p{
  margin:0;
  color:#e4e4e8 !important;
  font-weight:800;
}

.value-box p + p{
  margin-top:8px;
}

.value-box span{
  text-decoration:line-through;
  color:var(--muted);
}

.value-box strong{
  display:block;
  margin-top:6px;

  color:#d7ff91;
  font-family:'Archivo Black', sans-serif;

  font-size:clamp(2.2rem,4vw,3.4rem);
  line-height:1;
}

.pricing-premium small{
  line-height:1.5;
}











/* =================== FAQ / PREGUNTAS FRECUENTES =================== */
.faq-list details{
  background:#f5f6f4;
  border:1px solid #e5e7e1;
  color:var(--bg);
}

.faq-list p{
  color:#4f4f55;
}
/* =================== FOOTER =================== */
.footer{
  padding:34px 0 115px;
  background:#0d0d0e;
  color:var(--muted);
}

@media (max-width:560px){
  .footer{
    padding-bottom:180px;
  }
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

/* =================== CTA FLOTANTE INFERIOR =================== */
.sticky-cta{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translate(-50%,120%);
  width:min(720px,calc(100% - 28px));
  z-index:60;
  background:rgba(16,16,18,.92);
  border:1px solid var(--border);
  backdrop-filter:blur(16px);
  border-radius:999px;
  padding:10px 12px 10px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  box-shadow:var(--shadow);
  transition:.25s;
}

.sticky-cta.visible{
  transform:translate(-50%,0);
}

.sticky-cta span{
  font-weight:900;
}

.sticky-cta a{
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  padding:12px 18px;
  border-radius:999px;
  font-weight:900;
}

/* =================== ANIMACIONES AL HACER SCROLL =================== */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .65s ease,transform .65s ease;
}

.reveal.active{
  opacity:1;
  transform:none;
}

/* =================== RESPONSIVE TABLET =================== */
@media (max-width:980px){
  .hero-grid,
  .two-col,
  .offer-grid,
  .authority-card{
    grid-template-columns:1fr;
  }

  .steps-grid,
  .benefit-grid,
  .products-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .sticky-copy{
    position:static;
  }

  .nav-toggle{
    display:block;
  }

  .nav-menu{
    position:absolute;
    top:76px;
    left:0;
    right:0;
    background:#101012;
    border-bottom:1px solid var(--border);
    padding:20px;
    display:none;
    flex-direction:column;
  }

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

  .hero-image{
    max-width:620px;
    margin:auto;
  }
}

/* =================== RESPONSIVE MOBILE =================== */
@media (max-width:560px){
  .container{
    width:min(100% - 22px,var(--container));
  }

  .hero{
    padding:54px 0 52px;
  }

  .diagnosis,
  .method,
  .program,
  .offer,
  .benefits,
  .products,
  .authority,
  .faq{
    padding:58px 0;
  }

  .steps-grid,
  .benefit-grid,
  .products-grid,
  .countdown{
    grid-template-columns:1fr;
  }

  .pricing{
    padding:24px;
  }

  .sticky-cta{
    border-radius:22px;
    align-items:stretch;
    flex-direction:column;
    text-align:center;
  }

  .sticky-cta a{
    display:block;
  }

  .brand-copy{
    display:none;
  }

  .btn{
    width:100%;
  }

  .hero-actions .btn{
    width:100%;
  }
}



/* =================== SECCION GARANTÍAS =================== */
.guarantee{
  padding:88px 0;
}

/* =================== GRID GARANTÍAS - UNA SOLA CARD CENTRADA =================== */
.guarantee-grid{
  display:grid;
  grid-template-columns:minmax(280px, 620px);
  justify-content:center;
  gap:20px;
  margin-top:30px;
}
/* =================== CARD =================== */
.guarantee-card{
  padding:28px;
  border-radius:24px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--border);
  position:relative;
  overflow:hidden;
  text-align:center; /* 🔥 centra todo el texto */
}

/* EFECTO SUAVE */
.guarantee-card::before{
  content:"";
  position:absolute;
  top:-40px;
  right:-40px;
  width:160px;
  height:160px;
  background:rgba(112,169,66,.08);
  filter:blur(60px);
  border-radius:999px;
}

/* =================== ICONO =================== */
.guarantee-icon{
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:var(--green-soft);
  font-size:1.4rem;
  margin-bottom:16px;
  margin:0 auto 16px; /* 🔥 centra horizontal */
}

.guarantee-icon.gold{
  background:rgba(246,196,83,.15);
}

/* =================== TEXTO =================== */
.guarantee-card h3{
  font-family:'Archivo Black', sans-serif;
  margin-bottom:6px;
}

.guarantee-time{
  font-weight:800;
  color:var(--green);
  font-size:.9rem;
}

.guarantee-time.gold{
  color:#f6c453;
}

.guarantee-card p{
  margin-top:10px;
  color:var(--muted);
}

/* =================== CTA =================== */
.guarantee-cta{
  text-align:center;
  margin-top:30px;
}

.guarantee-cta p{
  font-size:1.2rem;
  margin-bottom:14px;
}

/* =================== RESPONSIVE =================== */
@media (max-width:768px){
  .guarantee-grid{
    grid-template-columns:1fr;
  }
}

/* =================== OFERTA / LOOK & FEEL MEJORADO =================== */

.pricing-premium{
  max-width:520px;
  width:100%;
  margin-left:auto;
  padding:38px;
}

.pricing-premium h3{
  font-size:1rem;
  margin-top:16px;
}

.pricing-title{
  font-size:1.05rem;
  line-height:1.45;
}

.pricing .price{
  font-size:3.2rem;
  margin:8px 0 24px;
}

.pricing-block,
.bonus-box,
.value-box{
  margin-top:20px;
}

.pricing-list{
  gap:10px;
}

.pricing-list li{
  font-size:.95rem;
}

.bonus-box{
  padding:22px;
}

.value-box{
  padding:20px;
}

.value-box strong{
  display:block;
  margin-top:4px;
}

.pricing-premium .btn{
  margin-top:22px;
  padding:17px 24px;
}

.pricing-premium small{
  max-width:360px;
  margin:14px auto 0;
}

/* Responsive */
@media (max-width:980px){
  .pricing-premium{
    max-width:100%;
    margin:0 auto;
  }
}
/* =================== SECCIÓN TESTIMONIOS =================== */
.testimonials{
  padding:88px 0;
}

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

.testimonial-card{
  padding:28px;
  border-radius:24px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  box-shadow:0 18px 50px rgba(0,0,0,.22);
}

.testimonial-text{
  color:#e4e4e8;
  font-size:.98rem;
  line-height:1.65;
  margin:0 0 22px;
}

.testimonial-author{
  border-top:1px solid var(--border);
  padding-top:18px;
}

.testimonial-author strong{
  display:block;
  color:#ffffff;
  font-weight:900;
  margin-bottom:4px;
}

.testimonial-author span{
  display:block;
  color:var(--muted);
  font-size:.9rem;
}

.stars{
  color:#d7ff91;
  font-size:1.1rem;
  letter-spacing:.08em;
  margin:18px 0 0;
}

/* =================== RESPONSIVE TESTIMONIOS =================== */
@media (max-width:980px){
  .testimonials-grid{
    grid-template-columns:1fr;
  }
}




/* =================== COLUMNA IZQUIERDA OFERTA =================== */
.offer-left{
  align-self:start;
}

/* =================== IMAGEN IZQUIERDA SOLO DESKTOP =================== */

.offer-left-image{
  display:block;
  width:100%;
  margin:34px 0 0;

  border-radius:32px;
  overflow:hidden; /* el contenedor recorta la imagen */
  box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.offer-left-image img{
  width:100%;
  max-width:520px;
  height:auto;
  display:block;
  object-fit:contain;
}

/* Ocultar en tablet y mobile */
@media (max-width:980px){
  .offer-left-image{
    display:none;
  }
}



/* =================== IMAGEN GARANTÍA =================== */
.guarantee-badge{
  width:140px;
  margin:0 auto 18px;
}

.guarantee-badge img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
}


/* =================== LOGO REAL =================== */
/* =================== BRAND COMPLETO =================== */
/* =================== BRAND COMPLETO =================== */
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

/* =================== LOGO RESPONSIVE =================== */
.brand-logo{
  width:auto;

  height:clamp(34px, 6vw, 52px);

  max-width:140px;

  object-fit:contain;

  display:block;

  flex-shrink:0;
}

/* =================== TEXTO =================== */
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1;
}

/* =================== TMT =================== */
.brand-mark{
  font-family:'Archivo Black',sans-serif;
  font-size:1.2rem;

  background:linear-gradient(
    135deg,
    var(--green),
    #d7ff91,
    var(--green-dark)
  );

  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* =================== SUBTÍTULO =================== */
.brand-copy{
  font-size:.82rem;
  font-weight:700;
  color:#ffffff;
  margin-top:4px;
}

/* =================== MOBILE =================== */
@media (max-width:560px){

  .brand{
    gap:10px;
  }

  .brand-logo{
    height:34px;
    max-width:110px;
  }

  .brand-copy{
    display:none;
  }

}

/* =================== LISTA DE CURSOS / PRODUCTOS =================== */

.course-list{
  display:grid;
  gap:16px;
  max-width:1050px;
  margin:0 auto;
}

.course-item{
  display:grid;
  grid-template-columns:58px 1fr auto auto;
  gap:18px;
  align-items:center;

  padding:20px;
  border-radius:22px;

  background:rgba(255,255,255,.06);
  border:1px solid var(--border);

  transition:.25s ease;
}

.course-item:hover{
  transform:translateY(-3px);
  border-color:rgba(112,169,66,.5);
}

.course-item span{
  font-family:'Archivo Black', sans-serif;
  font-size:1.6rem;
  color:var(--green);
}

.course-info h3{
  margin:0 0 6px;
  font-size:1.2rem;
}

.course-info p{
  margin:0;
  color:var(--muted);
}

.course-info small{
  display:inline-block;
  margin-bottom:8px;
  padding:5px 10px;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  font-weight:900;
  font-size:.7rem;
}

.course-item strong{
  font-family:'Archivo Black', sans-serif;
  font-size:1.5rem;
  color:#d7ff91;
  white-space:nowrap;
}

.course-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:12px 18px;
  border-radius:999px;

  background:linear-gradient(135deg,var(--green),#d7ff91,var(--green-dark));
  color:#111;

  font-weight:900;
  white-space:nowrap;
}

.course-item.featured{
  background:linear-gradient(
    135deg,
    rgba(112,169,66,.18),
    rgba(255,255,255,.06)
  );
  border-color:rgba(112,169,66,.45);
}

/* MOBILE */
@media(max-width:768px){

  .course-item{
    grid-template-columns:1fr;
    text-align:center;
  }

  .course-item span{
    margin:auto;
  }

  .course-link{
    width:100%;
  }

}