: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(240,240,240,0.55);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

header nav ul{ display:flex; list-style:none; }
header nav ul li{ margin: 0 15px; }
header nav ul li a{
  text-decoration:none;
  color:#111;
  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: 0; }

.brand-logo--dark{
  opacity: 1;
  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(200,16,46,0.12);
  backdrop-filter: blur(8px);
  color:#C8102E;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration:none;
  border: 1px solid rgba(200,16,46,0.5);
  margin-left: 10px;
  transition: 0.25s;
  display:inline-block;
  font-family: var(--font-title);
  font-weight: 600;
}
.btn-glass:hover{
  background: #C8102E;
  color:#fff;
}

/* =========================
   HERO / BANNER PRINCIPAL
   (con imagen distinta para PC y móvil)
========================= */
.hero{
  position: relative;
  height: clamp(600px, 70vh, 700px);
  display:flex;
  align-items:center;
  padding: 0 8%;
  background: url("https://bogota.gov.co/sites/default/files/2026-08/fondo-banner.webp") no-repeat center center / cover;
  overflow:hidden;
}

/* Overlay para que el texto negro siempre se lea bien,
   sin importar qué parte de la imagen quede detrás */
.hero-content{
  position: relative;
  z-index:2;
  max-width: 650px;
  color:#111;
  text-align:left;
  padding-top: 60px;
}

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

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

/* --- VERSIÓN MÓVIL DEL HERO --- */
@media (max-width: 768px){
  .hero{

    background-image: url("https://bogota.gov.co/sites/default/files/2026-08/fondo-banner-mobile.webp");
    background-position: center top;
    background-size: cover;
    height: 100vh;
    min-height: 600px;
    padding: 0 6% 50px;
    align-items: flex-end; 
  }

 
  .hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.45) 35%,
      rgba(0,0,0,0) 70%
    );
    z-index: 1;
  }

  .hero-content{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    color: #fff;
    text-align: left;
  }

  .hero-content h1{
    font-size: 1.7rem;
    line-height: 1.2;
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  }

  .hero .buttons{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .hero .buttons .btn-yellow,
  .hero .buttons .btn-glass{
    text-align: center;
    margin-left: 0;
  }
}

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

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

.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: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.incentivo-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- VERSIÓN MÓVIL: EL INCENTIVO --- */
@media (max-width: 900px){
  .incentivo-section{
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    padding: 60px 6%;
  }

  .incentivo-text{
    order: 1;
  }

  .incentivo-image{
    order: 2;
    max-height: 280px;
  }
}

/* =========================
   SECCIÓN 3: REQUISITOS
========================= */
.requisitos-v2{
  padding: 96px 0;
  background: #fff;
}

.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: 15px;
  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: 15px 0 0 15px;
  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 (TARJETA + FONDO IMAGEN)
========================= */
.beneficio{
  position: relative;
  background: 
    linear-gradient(rgba(20,20,20,0.72), rgba(20,20,20,0.72)),
    url("https://bogota.gov.co/sites/default/files/2026-08/Bacgraund-Bogota.webp") no-repeat center center / cover;
  padding: 100px 0 120px;
  width: 100%;
}

.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;
  position: relative;
  z-index: 2;
}

.beneficio__grid{
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.beneficio-card{
  position: relative;
  background: var(--beneficio-card);
  border-radius: 15px;
  padding: 54px 50px 44px;
  box-shadow: 0 22px 50px rgba(0,0,0,.35);
  overflow: visible;
  width: 100%;
  max-width: 620px;
}

.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;
  text-align: center;
}

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

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

.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{ padding: 80px 0 100px; }
  .beneficio-card{
    padding: 46px 26px 34px;
    max-width: 92%;
  }
}

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

.funcionamiento-container{
  display: flex;
  flex-direction: column;
  gap: 45px;
  max-width: 1100px;
  margin: 0 auto;
}

.funcionamiento-intro{
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

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

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

/* Grid 2x2: el orden en el HTML se mantiene (1,2,3,4),
   pero grid-auto-flow:column hace que 1-2 caigan en la
   columna izquierda y 3-4 en la columna derecha */
.funcionamiento-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  column-gap: 70px;
}

.funcionamiento-item{
  display: flex;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid #eee;
}
/* El 2do y 4to elemento son el final de cada columna: sin línea inferior */
.funcionamiento-item:nth-child(even){ border-bottom: none; }

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

.icon-circle img{
  width: 40px;
  height: 40px;
  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.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.item-text h4{
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}

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

@media (max-width: 900px){
  .funcionamiento-intro{ text-align: left; margin: 0; }

  .funcionamiento-list{
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
  }

  .funcionamiento-item{ border-bottom: 1px solid #eee; }
  .funcionamiento-item:nth-child(even){ border-bottom: 1px solid #eee; }
  .funcionamiento-item:last-child{ border-bottom: none; }
}

/* =========================
   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: 15px;
  background: url('https://bogota.gov.co/sites/default/files/2026-08/bogota-colombia.webp') 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: 15px;
  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: 15px;
  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: 15px;
  }
  .docs-card__title{
    font-size: 1.35rem;
  }
}
.req-item__desc li {
    margin-left: 30px; 
    padding-left: 10px;
    list-style-type: disc;
}