:root{
  --font-title: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --yellow: #FFCD00;
  --text: #111;
  --muted: #555;

  /* Neutros */
  --gray-50:  #F4F5F7;
  --gray-100: #F1F3F4;
  --gray-200: #E0E0E0;

  /* Sombras */
  --shadow-soft:  0 8px 20px rgba(0,0,0,.10);
  --shadow-hover: 0 14px 28px rgba(0,0,0,.14);

  /* Acentos */
  --accent-yellow:#FFCD00;
  --accent-red:#C8102E;

  /* Beneficio */
  --beneficio-bg: #b72b35;        
  --beneficio-card: #E9E9E9;      
  --beneficio-white: #FFFFFF;     
  --beneficio-yellow: #FFCD00;   
  --beneficio-accent: #B30E3A;   
  --beneficio-text: #111;
  --beneficio-muted: #5b5b5b;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
img{ max-width:100%; display:block; height:auto; }

html, body{ width:100%; overflow-x:hidden; }

body{
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

h1,h2,h3,h4,.logo{ font-family: var(--font-title); }
p, li, small{ font-family: var(--font-body); }

section{ scroll-margin-top: 110px; }

.container{
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

/* =========================
   HEADER (GLASS + SCROLL)
========================= */
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 20px 8%;
  transition: all 0.35s ease;
  z-index: 1000;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

header nav ul{ display:flex; list-style:none; }
header nav ul li{ margin: 0 15px; }
header nav ul li a{
  text-decoration:none;
  color:#fff;
  font-weight: 500;
  transition: 0.25s;
}

header.scrolled{
  background: #fff;
  padding: 12px 8%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.10);
  border-bottom: none;
}
header.scrolled nav ul li a{ color:#333; }

/* Brand logos (blanco/oscuro) */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
}

.brand-logo{
  height: 56px;
  width: auto;
  display: block;
  transition: opacity .25s ease, transform .25s ease;
}

.brand-logo--light{ opacity: 1; }

.brand-logo--dark{
  opacity: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

header.scrolled .brand-logo--light{ opacity: 0; }
header.scrolled .brand-logo--dark{ opacity: 1; }

/* =========================
   BOTONES
========================= */
.btn-yellow{
  background: var(--yellow);
  color:#000;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s;
  border: none;
  display:inline-block;
  cursor:pointer;
  font-family: var(--font-title);
}
.btn-yellow:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,0,0,0.18);
}

.btn-glass{
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color:#fff;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,0.3);
  margin-left: 10px;
  transition: 0.25s;
  display:inline-block;
  font-family: var(--font-title);
}
.btn-glass:hover{ background: rgba(255,255,255,0.25); }

.hero{
  position: relative;
  height: 100vh;
  display:flex;
  align-items:center;
  padding: 0 8%;
  background: url("./images/fondo-banner.jpg") no-repeat center center / cover;
  overflow:hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(100, 0, 20, 0.85) 0%,   
    rgba(100, 0, 20, 0.45) 55%,  
    rgba(100, 0, 20, 0.00) 100% 
  );
  z-index: 1;
}

.hero-content{
  position: relative;
  z-index:2;
  max-width: 650px;
  color:#fff;
  text-align:left;
  padding-top: 60px;
}

.hero-content h1{
  font-size: 3.4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

@media (max-width: 768px){
  .hero-content h1{
    font-size: 2.6rem;
  }
}

.hero-content p{
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* =========================
   SECCI�N 2: INCENTIVO
========================= */
.incentivo-section{
  padding: 90px 8%;
  display:flex;
  align-items:center;
  gap: 60px;
  background: #fff;
}

.tag-container{
  display:flex;
  align-items:center;
  margin-bottom: 20px;
}

.tag-text{
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color:#333;
  border: 1px solid #ccc;
  padding: 5px 15px;
  border-radius: 999px;
}

.incentivo-text{ flex: 1; }

.incentivo-text h2{
  font-size: 2.5rem;
  color:#111;
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 800;
}

.incentivo-text p{
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.incentivo-image{
  flex: 1;
  max-height: 420px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.incentivo-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px){
  .incentivo-section {
    flex-direction: column; 
  }
}

/* =========================
   SECCI�N 3: REQUISITOS
========================= */
.requisitos-v2{
  padding: 96px 0;
  background: var(--gray-50);
}

.requisitos-v2__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.requisitos-v2__title{
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: #111;
  padding: 0 0 24px 0;
  margin-bottom: 16px;
  position: relative;
  text-align: center; 
}

.requisitos-v2__title::after{
  content:"";
  display:block;
  width: 120px;
  height: 4px;
  background:#BDBDBD;
  border-radius: 4px;
  margin: 14px auto 0;
}

.requisitos-v2__list{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
}
.req-item{
  position: relative;
  background: var(--gray-100);
  border-radius: 20px;
  padding: 26px 28px 26px 56px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
  min-width:0;
}

.req-item:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.req-item::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width: 35px;
  height:100%;
  border-radius: 20px 0 0 20px;
  background: var(--accent-yellow);
}

.requisitos-v2__list .req-item:nth-child(even)::before{
  background: var(--accent-red);
}

/* TEXTO */
.req-item__title{
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
  color:#111;
}

.req-item__desc{
  font-size: 1rem;
  color:#555;
  line-height:1.55;
  overflow-wrap:anywhere;
}

.req-item__desc li{
  margin-left: 18px;
  margin-bottom: 6px;
  list-style: disc;
}

.requisitos-v2__right{ display:none; }

@media (max-width:1024px){
  .requisitos-v2__title{ font-size:2.2rem; }
}
@media (max-width:768px){
  .requisitos-v2{ padding: 64px 0; }
  .requisitos-v2__list{ grid-template-columns:1fr; }
  .req-item{ padding: 22px 22px 22px 48px; }
}

/* =========================
   SECCI�N: BENEFICIO (2 TARJETAS)
========================= */
.beneficio{
  background: var(--beneficio-bg);
  padding: 90px 0 110px;
}

.beneficio__title{
  text-align: center;
  color: #fff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0 0 60px;
  padding: 0 12px;
}

.beneficio__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

.beneficio-card{
  position: relative;
  background: var(--beneficio-card);
  border-radius: 28px;
  padding: 44px 42px 38px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  overflow: visible;
  min-width: 0;
}

.beneficio-card--white{
  background: var(--beneficio-white);
}

.beneficio-card__icon{
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--beneficio-yellow);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
}

.beneficio-card__icon svg{
  width: 44px;
  height: 44px;
  fill: #000;
}

.beneficio-card__subtitle{
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--beneficio-text);
  margin: 18px 0 12px;
}

.beneficio-card__underline{
  display: inline-block;
  width: 44px;
  height: 8px;
  border-radius: 10px;
  background: var(--beneficio-accent);
  margin-bottom: 18px;
}

.beneficio-card__text{
  color: var(--beneficio-muted);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0 0 18px;
}

.beneficio-card__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.beneficio-card__list li{
  position: relative;
  padding-left: 26px;
  color: var(--beneficio-muted);
  font-size: 1.05rem;
  line-height: 1.45;
}

.beneficio-card__list li::before{
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--beneficio-accent);
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.2;
}

/* Responsive beneficio */
@media (max-width: 900px){
  .beneficio__grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .beneficio-card{
    padding: 42px 26px 34px;
  }
}

/* =========================
   SECCI�N 4: FUNCIONAMIENTO
========================= */
.funcionamiento-section{
  padding: 100px 8%;
  background-color: #ffffff;
}

.funcionamiento-container{
  display: flex;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.funcionamiento-intro{
  flex: 1;
  position: sticky;
  top: 150px;
  height: fit-content;
}

.funcionamiento-intro h2{
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #1a1a1a;
}

.funcionamiento-intro p{
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.funcionamiento-list{ flex: 1.2; }

.funcionamiento-item{
  display: flex;
  align-items: center;
  padding: 35px 0;
  border-bottom: 1px solid #eee;
}
.funcionamiento-item:last-child{ border-bottom: none; }

.icon-circle{
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  flex-shrink: 0;
}

.icon-circle img{
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.orange-bg { background-color: #FFF2EB; }
.blue-bg   { background-color: #EBF5FF; }
.green-bg  { background-color: #EEFBF4; }
.yellow-bg { background-color: #FFFBEB; }

.item-text h3{
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.item-text p{
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 900px){
  .funcionamiento-container{ flex-direction: column; }
  .funcionamiento-intro{ position: static; text-align: left; }
}

/* =========================
   SECCI�N 5: BANNER FINAL
========================= */
.final-banner-section{
  padding: 60px 8%;
  background-color: #fff;
}

.banner-image-container{
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 20px;
  background: url('images/bogota-colombia.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.10);
}

.banner-image-container::before{
  content: "";
  position: absolute;
  inset:0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.btn-floating-action{
  position: relative;
  z-index: 2;
  background-color: var(--yellow);
  color: #000;
  padding: 18px 40px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.20);
  border: none;
}

.btn-floating-action:hover{
  transform: scale(1.05);
  background-color: #fff;
  color: #000;
  box-shadow: 0 15px 30px rgba(0,0,0,0.28);
}

/* =========================
   FOOTER (LIMPIO)
========================= */
.site-footer{
  background: #D02D37;
  color: #fff;
  margin-top: 32px;
}

.site-footer .separator{
  height: 2px;
  background: rgba(255,255,255,0.85);
}

/* Contenido principal */
.footer__content{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 18px 0;
}

/* Marca */
.footer__content .brand{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.55);
}

.footer__content .brand img{
  height: 66px;
  width: auto;
}

.social.social--img{
  display: flex;
  gap: 16px;
  align-items: center;
  padding-left: 24px;
}

.social.social--img a img{
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: transform .2s ease, filter .2s ease;
}

.social.social--img a:hover img{
  transform: scale(1.08);
  filter: brightness(1.15);
}

.copyright{
  text-align: center;
  padding: 12px 0 18px;
  font-size: .9rem;
  opacity: .92;
}

@media (max-width: 768px){
  header nav{ display:none; }

  .footer__content{
    flex-direction: column;
    gap: 14px;
  }
  .footer__content .brand{
    border-right: none;
    padding-right: 0;
  }
  .social.social--img{
    padding-left: 0;
  }
}
/* =========================
   SECCI�N: DOCUMENTOS REQUERIDOS
========================= */

.docs-section{
  padding: 90px 0;
  background: #fff;
}

.docs__wrap{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.docs__media{
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  background: #eee;
}

.docs__media img{
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}
.docs__title{
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 26px;
  color: #111;
}

.docs__grid{
  display: grid;
  gap: 22px;
}
.docs-card{
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 34px 34px 30px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.docs-card::before{
  content:"";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(0,0,0,0.06);
}
.docs-card--highlight{
  background: #d12f37; 
  color: #fff;
  border: none;
}

.docs-card--highlight::before{
  background: rgba(255,255,255,0.20);
}

.docs-card__title{
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.55rem;
  margin: 0 0 14px;
  color: inherit;
}

.docs-card__text{
  margin: 0;
  color: inherit;
  opacity: 0.95;
  font-size: 1.05rem;
  line-height: 1.55;
}
.docs-card__list{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.docs-card__list li{
  color: inherit;
  opacity: 0.9;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
@media (max-width: 1024px){
  .docs__wrap{
    grid-template-columns: 1fr;
  }
  .docs__media img{
    min-height: 320px;
  }
}

@media (max-width: 768px){
  .docs-section{
    padding: 60px 0;
  }
  .docs-card{
    padding: 26px 22px;
    border-radius: 22px;
  }
  .docs-card__title{
    font-size: 1.35rem;
  }
}
.req-item__desc li {
    margin-left: 30px; 
    padding-left: 10px;
    list-style-type: disc;
}
