:root {

  --primary:#0B6E4F;
  --secondary:#1B9C5A;
  --accent:#A7D129;

  /* Guiño línea gráfica */

  --blue:#343598;
  --yellow:#FEAE33;

  --light:#DDF5E4;

  --bg:#F4FAF5;

  --card:#ffffff;

  --text:#1C2B22;

  --muted:#6B7A72;

  --shadow:
  0 20px 50px rgba(0,0,0,.08);

}



*{

margin:0;

padding:0;

box-sizing:border-box;

}



html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}



body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;

  font-family: "Segoe UI", sans-serif;

  background:
    linear-gradient(
      180deg,
      #EAF7EC,
      #F7FBF8
    );

  color: var(--text);

  overflow-x: hidden;

  position: relative;
}


/*=====================

BARRA SUPERIOR

======================*/

body::before{

content:"";

position:fixed;

top:0;

left:0;

width:100%;

height:5px;

background:

linear-gradient(

90deg,

#FEAE33,

#343598,

#F8280C,

#03AD43,

#8F3292

);

z-index:9999;

}





/*=====================

HEADER

======================*/



.topbar{

position:sticky;

top:0;

z-index:1000;

display:flex;

justify-content:space-between;

align-items:center;

padding:14px 8%;

background:

rgba(

255,

255,

255,

0.88

);

backdrop-filter:

blur(15px);

border-bottom:

1px solid #e7f4ea;

}



.logo{

display:flex;

align-items:center;

gap:12px;

}



.logo-icon{

display:flex;

align-items:center;

justify-content:center;

width:80px;

}



.logo-icon img{

max-width:80%;

max-height:80%;

height:auto;

}



.subtitle{

font-size:.95rem;

font-weight:700;

color:

var(--primary);

}



nav{

display:flex;

gap:28px;

}



nav a{

text-decoration:none;

color:

var(--primary);

font-weight:700;

font-size:.95rem;

transition:.3s;

position:relative;

}



nav a:hover{

color:

var(--secondary);

}



nav a::after{

content:"";

position:absolute;

bottom:-5px;

left:0;

width:0;

height:2px;

background:

var(--accent);

transition:.3s;

}



nav a:hover::after{

width:100%;

}





/*=====================

HERO

======================*/



.hero{

padding:

80px 25px;

text-align:center;

position:relative;

}



.hero-content{

max-width:850px;

margin:auto;

background:

rgba(

255,

255,

255,

0.45

);

backdrop-filter:

blur(15px);

padding:

50px;

border-radius:

35px;

box-shadow:

var(--shadow);

animation:

fadeUp 1s ease;

}



.hero-badge{

display:inline-block;

background:

rgba(

11,

110,

79,

.12

);

color:

var(--primary);

padding:

10px 18px;

border-radius:

30px;

font-weight:700;

}



.hero h1{

margin-top:25px;

font-size:

2.5rem;

line-height:

1.2;

}



.hero p{

margin-top:20px;

color:

var(--muted);

font-size:

1.1rem;

max-width:650px;

margin-left:auto;

margin-right:auto;

line-height:

1.7;

}



.hero-buttons{

margin-top:35px;

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}



.hero-buttons a{

text-decoration:none;

padding:

16px 32px;

border-radius:

18px;

font-weight:700;

transition:.3s;

}



.hero-buttons a:first-child{

background:

linear-gradient(

135deg,

var(--primary),

var(--secondary)

);

color:white;

}



.hero-buttons a:last-child{

background:white;

color:

var(--primary);

box-shadow:

var(--shadow);

}



.hero-buttons a:hover{

transform:

translateY(-6px);

}



/* CIRCULOS DIFUMINADOS */

.hero::before{

content:"";

position:absolute;

top:-150px;

right:-150px;

width:350px;

height:350px;

border-radius:50%;

background:

rgba(

167,

209,

41,

0.15

);

filter:

blur(80px);

z-index:-1;

}



.hero::after{

content:"";

position:absolute;

bottom:-120px;

left:-100px;

width:300px;

height:300px;

border-radius:50%;

background:

rgba(

11,

110,

79,

0.12

);

filter:

blur(90px);

z-index:-1;

}





/*=====================

ACCIONES

======================*/



.acciones{

max-width:1100px;

margin:auto;

padding:

40px 20px;

}



.acciones h2{

text-align:center;

font-size:

2rem;

margin-bottom:

40px;

}



.grid{

display:grid;

grid-template-columns:

repeat(

auto-fit,

minmax(

260px,

1fr

)

);

gap:25px;

}





/*=====================

CARDS

======================*/



.card{
background:

var(--card);

padding:

25px;

border-radius:

30px;

box-shadow:

var(--shadow);

cursor:pointer;

transition:

all .35s ease;

position:relative;

overflow:hidden;

}



.card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:6px;

background:

linear-gradient(

90deg,

var(--primary),

var(--secondary),

var(--accent)

);

}



.card:hover{

transform:

translateY(-12px);

box-shadow:

0 30px 60px rgba(

11,

110,

79,

0.18

);

}



.icon{

width:70px;

height:70px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:1.8rem;

background:

linear-gradient(

135deg,

var(--light),

white

);

color:

var(--primary);

margin-bottom:22px;

transition:.35s ease;

}



.card:hover .icon{

transform:

scale(1)

rotate(-8deg);

}



.card h3{

font-size:

1.4rem;

margin-bottom:

12px;

}



.card p{

color:

var(--muted);

line-height:

1.6;

}



.coming-soon{

display:inline-block;

margin-top:18px;

padding:

7px 14px;

border-radius:

30px;

background:

rgba(

167,

209,

41,

0.15

);

color:

var(--primary);

font-size:.85rem;

font-weight:700;

}





/* =========================================
   BOGOTÁ EN 1 MINUTO
========================================= */

.future-section {
  position: relative;
  max-width: 900px;
  margin: 80px auto;
  padding: 55px 50px;
  text-align: center;

  background: #ffffff;
  border: 1px solid rgba(20, 61, 42, 0.08);
  border-radius: 30px;

  box-shadow: var(--shadow);

  overflow: hidden;
}


/* Detalle decorativo superior */

.future-section::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 5px;

  background: linear-gradient(
    90deg,
    var(--primary),
    #3c7658,
    var(--primary)
  );
}


/* =========================================
   BADGE
========================================= */

.future-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 20px;
  padding: 7px 14px;

  border-radius: 999px;

  background: rgba(20, 61, 42, 0.07);

  color: var(--primary);

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.future-badge span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--primary);
}


/* =========================================
   ICONO
========================================= */

.future-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 70px;
  height: 70px;

  margin: 0 auto 20px;

  border-radius: 20px;

  background: #f1f6f3;

  font-size: 2rem;

  box-shadow: 0 8px 20px rgba(20, 61, 42, 0.08);
}


/* =========================================
   TITULO
========================================= */

.future-section h2 {
  margin: 0 0 14px;

  color: var(--primary);

  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;

  letter-spacing: -0.03em;
}


/* =========================================
   DESCRIPCION
========================================= */

.future-description {
  max-width: 620px;

  margin: 0 auto;

  color: var(--muted);

  font-size: 1.05rem;
  line-height: 1.7;
}


/* =========================================
   PREVIEW DE NOTICIA
========================================= */

.future-preview {
  max-width: 650px;

  margin: 35px auto 0;
  padding: 20px;

  text-align: left;

  background: #f8faf9;

  border: 1px solid rgba(20, 61, 42, 0.08);
  border-radius: 18px;
}


/* Cabecera */

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-bottom: 14px;

  border-bottom: 1px solid rgba(20, 61, 42, 0.08);

  color: var(--primary);

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}


/* Líneas simuladas */

.preview-lines {
  display: flex;
  flex-direction: column;
  gap: 9px;

  padding: 22px 0;
}

.preview-lines span {
  display: block;

  height: 10px;

  border-radius: 10px;

  background: #dfe8e3;
}

.preview-lines span:first-child {
  width: 82%;
  height: 14px;
}

.preview-lines span:nth-child(2) {
  width: 94%;
}

.preview-lines span:nth-child(3) {
  width: 65%;
}


/* Footer preview */

.preview-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-top: 14px;

  border-top: 1px solid rgba(20, 61, 42, 0.08);

  color: var(--muted);

  font-size: 0.78rem;
}


/* =========================================
   CARACTERISTICAS
========================================= */

.future-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 25px;

  margin-top: 28px;

  color: var(--muted);

  font-size: 0.82rem;
  font-weight: 600;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 700px) {

  .future-section {
    margin: 50px 16px;
    padding: 40px 22px;

    border-radius: 24px;
  }

  .future-icon {
    width: 60px;
    height: 60px;

    font-size: 1.7rem;
  }

  .future-section h2 {
    font-size: 1.8rem;
  }

  .future-description {
    font-size: 0.95rem;
  }

  .future-preview {
    padding: 16px;
  }

  .future-footer {
    flex-direction: column;
    gap: 8px;
  }

}






/*=====================

FOOTER

======================*/



footer{

margin-top:

70px;

padding:

60px 20px;

text-align:center;

}



footer h3{

color:

var(--primary);

margin-bottom:

12px;

}



footer p{

color:

var(--muted);

line-height:

1.7;

}





/*=====================

ANIMACIONES

======================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F5F1FA;

}

::-webkit-scrollbar-thumb{

    background:var(--secondary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary);

}


@keyframes fadeUp{

from{

opacity:0;

transform:

translateY(40px);

}



to{

opacity:1;

transform:

translateY(0);

}

}





/*=====================

RESPONSIVE

======================*/

/*=====================
  RESPONSIVE
======================*/

@media (max-width: 768px) {

  /* =====================
     SEGURIDAD GENERAL
  ====================== */

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

  img,
  video,
  iframe,
  svg {
    max-width: 100%;
  }


  /* =====================
     HEADER
  ====================== */

  .topbar {
    width: 100%;
    max-width: 100%;

    flex-direction: column;

    gap: 12px;

    padding: 14px 20px;
  }

  .logo {
    max-width: 100%;
    gap: 8px;
  }

  .logo-icon {
    width: 65px;
    flex-shrink: 0;
  }

  .logo-icon img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  .subtitle {
    max-width: 100%;

    font-size: .85rem;

    text-align: center;

    overflow-wrap: anywhere;
  }


  /* =====================
     NAVEGACIÓN
  ====================== */

  nav {
    width: 100%;
    max-width: 100%;

    display: flex;

    gap: 12px 18px;

    flex-wrap: wrap;

    justify-content: center;
  }

  nav a {
    font-size: .88rem;

    white-space: normal;

    text-align: center;
  }


  /* =====================
     HERO
  ====================== */

  .hero {
    width: 100%;
    max-width: 100%;

    padding: 55px 16px 45px;

    overflow: hidden;
  }

  .hero-content {
    width: 100%;
    max-width: 850px;

    padding: 35px 22px;

    border-radius: 25px;

    overflow: hidden;
  }

  .hero-badge {
    max-width: 100%;

    font-size: .82rem;

    padding: 8px 14px;

    overflow-wrap: anywhere;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;

    margin-top: 20px;

    font-size: 1.9rem;

    line-height: 1.2;

    overflow-wrap: anywhere;
  }

  .hero p {
    width: 100%;
    max-width: 650px;

    margin-top: 16px;

    font-size: 1rem;

    line-height: 1.6;

    overflow-wrap: anywhere;
  }


  /* =====================
     BOTONES
  ====================== */

  .hero-buttons {
    width: 100%;
    max-width: 100%;

    flex-direction: column;

    gap: 12px;

    margin-top: 28px;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 100%;

    padding: 14px 20px;

    border-radius: 15px;

    text-align: center;
  }


  /* =====================
     ACCIONES
  ====================== */

  .acciones {
    width: 100%;
    max-width: 100%;

    padding: 30px 16px;

    overflow: hidden;
  }

  .acciones h2 {
    width: 100%;
    max-width: 100%;

    font-size: 1.7rem;

    margin-bottom: 28px;

    overflow-wrap: anywhere;
  }


  /* =====================
     GRID
  ====================== */

  .grid {
    width: 100%;
    max-width: 100%;

    grid-template-columns: minmax(0, 1fr);

    gap: 16px;
  }


  /* =====================
     CARDS
  ====================== */

  .card {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    padding: 24px 22px;

    border-radius: 23px;

    overflow: hidden;
  }

  .card h3 {
    max-width: 100%;

    font-size: 1.25rem;

    overflow-wrap: anywhere;
  }

  .card p {
    max-width: 100%;

    font-size: .94rem;

    line-height: 1.55;

    overflow-wrap: anywhere;
  }

  .icon {
    width: 58px;
    height: 58px;

    font-size: 1.5rem;

    margin-bottom: 18px;
  }


  /* =====================
     BOGOTÁ EN 1 MINUTO
  ====================== */

  .future-section {
    width: calc(100% - 32px);

    max-width: 900px;

    margin: 45px auto;

    padding: 32px 22px;

    border-radius: 25px;

    overflow: hidden;
  }

  .future-section h2 {
    font-size: 1.7rem;

    overflow-wrap: anywhere;
  }

  .future-section p {
    font-size: .95rem;

    line-height: 1.6;

    overflow-wrap: anywhere;
  }


  /* =====================
     FOOTER
  ====================== */

  footer {
    width: 100%;
    max-width: 100%;

    margin-top: 45px;

    padding: 40px 20px;

    overflow: hidden;
  }

}


/*=========================================================
  MODAL EQUIPO
=========================================================*/

.team-modal-overlay {

  position: fixed;

  inset: 0;

  width: 100%;
  height: 100%;

  z-index: 9999;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(0, 0, 0, .55);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  overflow-x: hidden;
  overflow-y: auto;
}


.team-modal {

  position: relative;

  width: 100%;
  max-width: 520px;

  min-width: 0;

  max-height: calc(100vh - 40px);

  padding: 32px;

  background: #fff;

  border-radius: 24px;

  box-shadow:
    0 25px 70px rgba(0,0,0,.25);

  overflow-x: hidden;
  overflow-y: auto;

  scrollbar-width: none;
  -ms-overflow-style: none;

  animation: teamModalIn .25s ease;
}


.team-modal::-webkit-scrollbar {
  display: none;
}


/*=========================================================
  ANIMACIÓN MODAL
=========================================================*/

@keyframes teamModalIn {

  from {
    opacity: 0;

    transform:
      translateY(15px)
      scale(.98);
  }

  to {
    opacity: 1;

    transform:
      translateY(0)
      scale(1);
  }

}


/*=========================================================
  BOTÓN CERRAR
=========================================================*/

.team-modal-close {

  position: absolute;

  top: 18px;
  right: 18px;

  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: none;

  border-radius: 50%;

  background: #f3f3f3;

  color: #333;

  font-size: 24px;

  cursor: pointer;

  transition: .2s ease;
}


.team-modal-close:hover {

  transform: scale(1.05);

  background: #e8e8e8;
}


/*=========================================================
  HEADER MODAL
=========================================================*/

.team-modal-header {

  width: 100%;

  min-width: 0;

  padding-right: 45px;

  margin-bottom: 26px;
}


.team-modal-icon {

  width: 52px;
  height: 52px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  border-radius: 14px;

  background: #f3f4f6;

  font-size: 22px;
}


.team-modal-header h2 {

  margin: 0 0 8px;

  font-size: 24px;

  line-height: 1.2;

  overflow-wrap: anywhere;
}


.team-modal-header p {

  margin: 0;

  color: #666;

  font-size: 14px;

  line-height: 1.5;

  overflow-wrap: anywhere;
}


/*=========================================================
  LISTA
=========================================================*/

.team-list {

  width: 100%;

  min-width: 0;

  display: flex;

  flex-direction:column;

  gap: 12px;
}


/*=========================================================
  PERSONA
=========================================================*/

.team-person {

  width: 100%;

  min-width: 0;

  display: flex;

  align-items: center;

  gap: 14px;

  padding: 16px;

  border: 1px solid #e8e8e8;

  border-radius: 16px;

  text-decoration: none;

  color: inherit;

  overflow: hidden;

  box-sizing: border-box;
}


.team-person-icon {

  flex: 0 0 44px;

  width: 44px;
  height: 44px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #f5f5f5;

  font-size: 18px;
}


.team-person-info {

  flex: 1 1 auto;

  min-width: 0;

  max-width: 100%;

  overflow: hidden;
}


.team-person-info h3 {

  margin: 0 0 3px;

  font-size: 15px;

  line-height: 1.3;

  overflow-wrap: anywhere;
}


.team-person-info span {

  display: block;

  margin-bottom: 4px;

  font-size: 12px;

  font-weight: 600;

  color: #555;

  overflow-wrap: anywhere;
}


.team-person-info p {

  margin: 0;

  font-size: 13px;

  line-height: 1.4;

  color: #777;

  overflow-wrap: anywhere;
}


.team-person-arrow {

  flex: 0 0 auto;

  font-size: 14px;

  color: #777;
}


/*=========================================================
  MODAL TABLET
=========================================================*/

@media (max-width: 768px) {

  .team-modal-overlay {
    padding: 16px;
  }

  .team-modal {

    width: 100%;

    max-width: 100%;

    max-height: calc(100vh - 32px);

    padding: 28px 22px;

    border-radius: 22px;
  }

}


/*=========================================================
  MODAL CELULAR
=========================================================*/

@media (max-width: 480px) {

  .team-modal-overlay {

    width: 100vw;

    max-width: 100vw;

    padding: 10px;

    overflow-x: hidden;
  }


  .team-modal {

    width: 100%;

    max-width: 100%;

    min-width: 0;

    max-height: calc(100vh - 20px);

    padding: 24px 16px;

    border-radius: 20px;

    overflow-x: hidden;

    overflow-y: auto;
  }


  .team-modal-close {

    top: 13px;
    right: 13px;

    width: 36px;
    height: 36px;

    font-size: 21px;
  }


  .team-modal-header {

    padding-right: 42px;

    margin-bottom: 20px;
  }


  .team-modal-icon {

    width: 46px;
    height: 46px;

    margin-bottom: 14px;

    border-radius: 12px;

    font-size: 19px;
  }


  .team-modal-header h2 {

    font-size: 20px;

    line-height: 1.25;
  }


  .team-modal-header p {

    font-size: 13px;

    line-height: 1.5;
  }


  .team-list {
    gap: 10px;
  }


  .team-person {

    gap: 9px;

    padding: 12px;

    border-radius: 14px;
  }


  .team-person-icon {

    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    border-radius: 10px;

    font-size: 15px;
  }


  .team-person-info h3 {
    font-size: 14px;
  }


  .team-person-info span {
    font-size: 11px;
  }


  .team-person-info p {

    font-size: 12px;

    line-height: 1.4;
  }


  .team-person-arrow {
    font-size: 11px;
  }

}


/*=========================================================
  CELULARES MUY PEQUEÑOS
=========================================================*/

@media (max-width: 360px) {

  .team-modal-overlay {
    padding: 6px;
  }


  .team-modal {

    max-height: calc(100vh - 12px);

    padding: 20px 13px;

    border-radius: 18px;
  }


  .team-modal-header h2 {
    font-size: 18px;
  }


  .team-person {

    gap: 8px;

    padding: 10px;
  }


  .team-person-icon {

    flex: 0 0 35px;

    width: 35px;
    height: 35px;

    font-size: 14px;
  }


  .team-person-info h3 {
    font-size: 13px;
  }


  .team-person-info span,
  .team-person-info p {
    font-size: 10.5px;
  }


  .team-person-arrow {
    display: none;
  }

}

