:root{
  --green: #2A827B;
  --green-10: #E2EDF8;
  --muted: #6c757d;
  --dark: #343437;
  --bg: #ffffff;
  --container: 1280px;
  --heading-font: 'Roboto', 'Museo Sans', 'Helvetica Neue', Arial, sans-serif;
  --body-font: 'Roboto', 'gobCL', 'Helvetica Neue', Arial, sans-serif;
}
/* Scope: aislamiento del landing dentro de la app React.
   Todas las reglas criticas se repiten bajo .sl-root para ganar
   en especificidad sobre Bootstrap y theme.scss cargados globalmente. */
.sl-root {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #343437;
}
.sl-root h1, .sl-root h2, .sl-root h3, .sl-root h4, .sl-root h5, .sl-root h6 {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  color: #2A827B;
}
.sl-root h1 { font-size: 22px; line-height: 1.2; margin-top: 48px; }
.sl-root h2 { font-size: 18px; line-height: 1.25; }
.sl-root h3 { font-size: 16px; line-height: 1.3; }
.sl-root h4 { font-size: 14px; line-height: 1.35; }
.sl-root .container { max-width: var(--container); margin: 0 auto; padding: 0 16px; }
.sl-root button { font-weight: 400; }
.sl-root p { margin: 0 0 24px; }

*{box-sizing:border-box}
body{font-family: var(--body-font); color:var(--dark); margin:0; background:var(--bg); font-size:16px; line-height:1.6; overflow-x: hidden; width: 100%; max-width: 100%;} /* prevent horizontal overflow */


/* Headings: use Montserrat 900 and green color */
h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: #2A827B;
  margin: 0 0 12px;
}

h1 { font-size: 22px; line-height: 1.2; margin-top: 48px; }
h2 { font-size: 18px; line-height: 1.25 }
h3 { font-size: 16px; line-height: 1.3 }
h4 { font-size: 14px; line-height: 1.35 }
.container{max-width:var(--container); margin:0 auto; padding:0 16px;} /* added horizontal padding always */
.topbar{
    position: fixed; /* fixed for desktop */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* mobile: use fixed to avoid sticky jitter/corte al hacer scroll */
@media (max-width: 768px) {
    .topbar {
        position: fixed !important; /* asegurar que sobreescriba sticky */
        left: 0;
        right: 0;
        /* ensure it sits above everything */
        z-index: 1001;
    }
    /* body padding now set by JavaScript based on header height */
    body {
        padding-top: env(safe-area-inset-top); /* at least safe area */
    }
    main {
        margin-top: 0; /* no duplicar espacio si ya había */
    }
    /* add padding to nav for button not to be cut */
    .nav {
        padding: 0 16px;
    }
}

.nav{display:flex;justify-content:space-between;align-items:center;padding:0;padding-bottom:12px}
.nav-left{list-style:none;display:flex;gap:18px;margin:0;padding:0}
.nav-left a{color:var(--dark);text-decoration:none;font-size:14px;padding:12px 4px}
.nav-left a:hover{color:var(--green)}
.brand{font-size:13px;font-weight:700;padding:0;margin:0 0 12px 0;display:flex;align-items:flex-start} /* added bottom margin */
.brand img{display:block;width:124px;height:89px;margin:0;padding:0;object-fit:contain}
.hero{background:var(--green-10);padding:40px 16px 60px;border-bottom:6px solid var(--green);position:relative;min-height:330px; width: 100%;  margin: 0; display: block;} /* adjusted to include padding in hero, not container */
.hero-inner{display:flex;gap:24px;align-items:center;padding-top:24px;padding-bottom:24px} /* more vertical breathing */
.hero-text{flex:1}
.hero-text h1{font-family: 'Museo Sans', var(--heading-font); font-weight:900;margin:0 0 8px;font-size:16pt;color:#2A827B;letter-spacing:0; word-break: break-word; max-width: 100%;}
.hero-text #site-logo{max-height:76px;display:block;margin-bottom:80px}
.lead{color:var(--muted);margin:0 0 18px}
.btn-primary{display:inline-block;background:var(--green);color:#fff;padding:10px 16px;border-radius:4px;text-decoration:none}
.btn-outline{display:inline-block;border:1px solid #ddd;padding:8px 12px;border-radius:4px;text-decoration:none;color:var(--green)}
.hero-art{margin-left:auto}
.hero-art img{max-width:100%;height:auto;display:block}


section {
    padding-top: 48px; /* extra space above each section */
    padding-bottom: 48px; /* extra space below */
}  
/* make paragraphs breathe */
p {margin:0 0 24px;} 

html {
    scroll-behavior: smooth; /* Para que el bajada sea fluida */
    width: 100%;
    overflow-x: hidden;
}
#hero-area {
    position: relative;

}
#hero-area .row {
    margin-left: 0;
    margin-right: 0;
}
.
/* platform CTA band */
.platform-cta{background:var(--green) !important;color:#fff}
.hero-area .platform-cta{position:absolute;left:0;right:0;bottom:0;padding:12px 0}
.platform-cta .platform-cta-link{color:#fff;text-decoration:none;font-family:var(--heading-font);font-weight:600;display:block;text-align:center;font-size:20px}
.platform-cta .platform-cta-link strong{font-weight:900}
.intro{padding:48px 0; margin-top: 32px;} /* match general section spacing + extra top margin */
.intro-row {
  display: flex;
  gap: 40px;
  align-items: center;
}
.intro-text{flex:1}
/* Remove top margin for first paragraph so it aligns with adjacent image */
.intro-text p:first-child{margin-top:0}
.intro-media {
  flex: 1;
  max-width: 400px;
}

/* Proposal two-column layout (diagram to the right) */
.proposal-row{display:flex;gap:24px;align-items:flex-start}
.proposal-text{flex:1}
/* Remove top margin for first paragraph in proposal so it aligns with adjacent diagram */
.proposal-text p:first-child{margin-top:0}
.proposal-media{width:360px;text-align:center}
.proposal-media .diagram img{width:100%;display:block}
.proposal-media .btn-outline{display:inline-block;margin:12px auto 0;padding:10px 14px;border-radius:6px;text-decoration:none;color:#222;background:#FFC107;border:none;cursor:pointer;min-width:120px;text-align:center}

/* Platform two-column layout */
.platform-row{display:flex;gap:24px;align-items:flex-start}
.platform-text{flex:1}
.platform-text p:first-child{margin-top:0}
.platform-media{width:360px;text-align:center}
.platform-media img{width:100%;display:block;border:1px solid #e9ecef;border-radius:6px}
.platform-media .btn-accent{display:inline-flex;margin-top:12px}
.video-thumb{ /* keep simple block layout so button sits below image */
  position:static;
  text-align:center;
}
.video-thumb img{width:100%;display:block}

/* Pauta item: icon at left of the paragraph */
.pauta-item{display:flex;align-items:flex-start;gap:12px;margin:12px 0}
.pauta-icon{width:44px;height:45px;flex:0 0 44px;display:block;align-self:flex-start}
/* Ensure paragraph and icon align at the top */
.pauta-item p{margin:0}
@media(max-width:600px){
  .pauta-item{gap:10px}
  .pauta-icon{width:40px;flex:0 0 40px}
}

/* Shared accent button used for video and diagram actions */
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  /* El padding lateral (20px) crea el espacio a los lados del texto */
  padding: 0 20px; 
  background: #00495f;
  color: #ffffff !important; /* Asegura el color blanco */
  border: none;
  border-radius: 6px;
  /* Eliminamos min-width para que el ancho sea automático */
  width: auto; 
  font-size: 14px;
  font-weight: 500; /* Un poco más de peso se ve mejor en botones */
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.3s ease;
  margin-top: 12px; /* Mantenemos el margen que tenía el de video */
}

.btn-accent:hover {
  background: #003646; /* Un tono más oscuro al pasar el mouse */
}

/* modal styles */
.fd-modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.6);display:flex;align-items:center;justify-content:center;z-index:9999}
.fd-modal{background:#fff;padding:18px;border-radius:8px;max-width:900px;width:90%;box-shadow:0 8px 24px rgba(0,0,0,0.2);position:relative}
.fd-modal img{width:100%;height:auto;display:block;border-radius:6px}
.fd-modal-close{position:absolute;right:10px;top:8px;background:transparent;border:none;font-size:20px;cursor:pointer}
.content{padding:36px 0}
.content article{margin-bottom:28px}
.diagram img{width:360px;max-width:100%;display:block}
.resources{background:#fff;padding:20px 0;border-top:1px solid #e9ecef}
.site-footer{background:#222;color:#fff;padding:28px 0;margin-top:40px}
.footer-inner{display:flex;justify-content:space-between;gap:20px;align-items:flex-start}
.logo-box{background:#fff;color:#222;padding:8px;border-radius:4px;display:inline-block}
.logo-box img{display:block;height:48px}
.contact-list{display:flex;flex-direction:column;gap:6px}
.contact-item{display:flex;align-items:center;gap:8px}
.contact-item img{width:18px;height:18px;display:inline-block}
.footer-right .social img{height:28px}

@media(max-width:900px){
  .hero-inner,.intro-row,.footer-inner{flex-direction:column}
  .hero-art img{max-width:100%}
  .intro-media{width:100%}
  .container{padding:0 12px}
  .hero-text h1{font-size:26px}
  .hero-text h3{font-size:20px}
  .platform-cta .platform-cta-link{font-size:16px}
  .proposal-row{flex-direction:column}
  .proposal-media{width:100%}
  .platform-row{flex-direction:column}
  .platform-media{width:100%}
}

/* Desktop adjustments */
@media(min-width:901px){
  h1 { margin-top: 24px; }
  .hero-art {
    max-width: 350px;
    margin-left: auto;
  }
}

@media(max-width:768px){
  .hero-text {
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
  }
 
  .hero-text h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 16px;
  }
}
/* =========================================
   FOOTER FINAL: ALINEACIÓN IZQUIERDA EN COLUMNA REDES
   ========================================= */

.footer-container {
    background-color: var(--green) !important;
    color: #ffffff !important;
    font-family: var(--body-font) !important;
    margin-top: 50px;
    width: 100%;
    padding: 60px 0 !important; 
}

.footer-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    max-width: var(--container) !important;
    margin: 0 auto !important;
    padding: 0 !important; 
}

/* Columna 1 (Logo): Alineación izquierda total */
.footer-column:first-child {
    flex: 0 0 auto !important; 
    min-width: 150px !important;
    text-align: left !important;
    padding: 0 !important;
}

.footer-column:first-child img {
    width: 125px !important;
    height: auto !important;
    display: block;
    margin: 0 0 20px 0 !important; 
}

/* Columna 2 (Contacto) */
.footer-column:nth-child(2) {
    flex: 1 !important;
    padding: 0 40px !important; 
}

/* Columna 3 (Redes): Columna a la derecha, pero contenido interno a la izquierda */
.footer-column:last-child {
    flex: 0 0 auto !important;
    text-align: left !important; /* Texto "Síganos" alineado con los íconos */
    min-width: 150px !important;
    padding: 0 !important;
}

.footer-column h5 {
    color: #ffffff !important;
    font-family: var(--heading-font) !important;
    font-weight: 700 !important;
    font-size: 19px !important;
    margin: 0 0 15px 0 !important; /* Un poco más de espacio bajo "Síganos" */
    text-transform: none !important;
}

/* Contenedor de íconos alineado a la izquierda de su columna */
.social-links-icons {
    display: flex !important;
    justify-content: flex-start !important; /* Alinea íconos al inicio de la columna */
    gap: 15px !important;
}

/* Ajustes para los nuevos íconos circulares */
.social-links-icons a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 24px !important;
    transition: opacity 0.2s;
}

/* Ajustes Móvil: Todo centrado para pantallas pequeñas */
@media (max-width: 768px) {
    .footer-flex {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 0 20px !important;
    }
    .footer-column:last-child {
        text-align: center !important;
    }
    .social-links-icons {
        justify-content: center !important;
    }
    .footer-column {
        margin-bottom: 30px;
    }
}

/* --- SISTEMA DE PESTAÑAS --- */
.recursos-tabs-section {
    padding: 0;

}

/* selector desplegable para tabs en móvil */
.tabs-select {
    display: none;
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* make the tabs header align with section headings and box edges */
.recursos-tabs-section .tabs-header {
  
    padding: 0; /* internal offset removed as requested */
}

/* ensure the section title aligns with the box edges */
.recursos-tabs-section h1 {
    margin: 0 0 16px;
}

/* desktop: align h1 with box edges */
@media(min-width:901px) {
    .recursos-tabs-section h1 {
        margin-left: -16px; /* shift left by 16px to match white box margin-offset */
    }
}

/* push header tabs edges to box boundaries (desktop only) */
@media(min-width:901px) {
    .recursos-tabs-section .tabs-header {
        margin: 0 -16px;
        padding: 0; /* no internal offset */
    }
}

@media (max-width: 900px) {
    /* a partir de tablets comprimidas hacia abajo se ocultan las tabs
       y solo se muestra el desplegable */
    .tabs-header { display: none; }
    .tabs-select { display: block; }
}

.tabs-header {
    display: flex;
    border-bottom: 4px solid #ffffff;
    gap: 5px;
    flex-wrap: wrap;          /* permitir nuevas filas si es necesario */
    /* el scroll ya no se utiliza; esconder en móvil con media query */
}

@media (max-width: 600px) {
    .tab-btn {
        font-size: 14px;
        padding: 8px 14px;
    }
}

.tab-btn {
    padding: 12px 25px;
    border: 1px solid transparent;
    border-bottom: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    font-family: var(--body-font);
    color: #2A827B;
   
    transition: all 0.3s ease;
}

.tab-btn:hover {
   font-weight: bold;
}



/* ajustes de padding y fuente para tabs en pantallas muy estrechas */
@media (max-width: 600px) {
    .tab-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* ocultar scrollbars en navegadores que lo permiten */
.tabs-header::-webkit-scrollbar { display: none; }
.tabs-header { -ms-overflow-style: none; scrollbar-width: none; }




@media(min-width:901px) {
    .tabs-content-container {
        margin: 0 -16px; /* same override for desktop */
    }
}

.tab-content {
    display: none; /* Oculto por defecto */
}

.tab-content.active {
    display: block; /* Solo se muestra el activo */
}

/* Lista de recursos interna */
.recursos-list {
    list-style: none;
    padding: 0;
    padding-top: 20px;
}

.recursos-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: 20px;
    font-size: 16px;
    color: var(--dark);
}

.recursos-list i {
    color: #5c8d89; /* Color de los iconos en la imagen */
    font-size: 18px;
}


.recurso-link {
    display: inline-flex;  /* Alinea ícono y texto en la misma línea */
    align-items: center;   /* Centra verticalmente el ícono con el texto */
    text-decoration: none; /* Quitamos el subrayado por defecto */
    color: #00495f;        /* Color de tu enlace */
    gap: 12px;             /* ESTO crea el espacio entre ícono y texto */
    margin-bottom: 10px;
}

/* Contenedor de la lista */
.recursos-list {
    list-style: none; /* Quita los puntos negros de la lista */
    padding: 0;
    margin: 0;
}

.recursos-list li {
    margin-bottom: 18px; /* Espacio entre cada fila */
}

/* El enlace que envuelve todo */
.recurso-item {
    display: inline-flex;  /* Alinea ícono y texto */
    align-items: center;   /* Centra verticalmente */
    text-decoration: none; /* Quita el subrayado global */
    color: #333;           /* Color del texto (Roboto) */
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    gap: 12px;             /* ESTO crea el espacio entre ícono y texto sin subrayado */
}

/* Estilo de los íconos de FontAwesome */
.recurso-item i {
    color: #5c8d89;        /* El color verde de tu imagen original */
    font-size: 20px;       /* Tamaño del ícono */
    width: 24px;           /* Ancho fijo para que los textos queden alineados */
    text-align: center;
}

/* Estilo del texto */
.recurso-texto {
    text-decoration: underline; /* Solo subrayamos el texto */
    text-underline-offset: 4px; /* Separa un poco el subrayado para que se vea limpio */
    color: #00495f;            /* Color azul/verde de link */
}

.recurso-item:hover .recurso-texto {
    color: #002a36;            /* Oscurece al pasar el mouse */
}

/* Contenedor para mantener la proporción 16:9 */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px; /* Opcional: para redondear las esquinas */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Opcional: para darle profundidad */
    margin-bottom: 24px; /* espacio bajo el video */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* ajustes responsivos para el menú */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-left {
        display: none;
        flex-direction: column;
        gap: 0;
        background: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 12px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .nav-left.show {
        display: flex;
    }
    .nav-left li {
        text-align: center;
        width: 100%;
    }
    .nav-left a {
        display: block;
        padding: 12px;
    }
}

/* refinamiento adicional para pantallas pequeñas */
@media (max-width: 600px) {
    .nav-left a {
        font-size: 16px;
    }
}


  body {
  font-size: 17px;
  line-height: 1.7;
}

h1 {
  font-size: 28px;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
}
    .hero {
  background: linear-gradient(135deg, #E2EDF8 0%, #ffffff 100%);
/*   padding: 80px 16px 100px; */
  border-bottom: none;
  position: relative;
}

.hero-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-text h3 {
  font-size: 22px;
  font-weight: 400;
  color: #444;
  margin-top: 12px;
}

#site-logo {
  max-height: 90px;
}

.content article,
.intro,
.platform,
.proposal,
.pauta-report {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  margin-top: 0;
}

.intro {
  margin-top: 36px;
  margin-bottom: 60px;
}

.btn-accent {
  background: linear-gradient(135deg, #2A827B, #1f6f68);
  color: #fff;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.topbar {
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.9);
}

.nav-left a {
  position: relative;
}

.nav-left a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: 0.3s;
}

.nav-left a:hover::after {
  width: 100%;
}
section {
  padding: 80px 0;
}
.video-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


 /* thumbnail */
.video-thumb {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  display: block;
}

/* botón play */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transition: 0.3s;
}

.video-thumb:hover .play-button {
  background: #2A827B;
}

/* modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* contenido */
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

/* iframe responsive */
.video-modal iframe {
  width: 100%;
  height: 500px;
  border-radius: 12px;
}

/* botón cerrar */
.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}
 


.recursos-tabs-section {
 
  padding: 60px 0;
}


.tabs-content-container {
  
  order: 99;
    flex-grow: 1;
    width: 100%;
  
    padding: 1rem;
    background: transparent;
   /*  border-width: 1px;
    border-style: solid; */
  /*   border-color: #0a4682; */
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;

}




.footer-container {
  background: #1f2d2c;
}

.section-header {
  margin-bottom: 24px;
  border-left: 4px solid var(--green);
  padding-left: 16px;
}

section + section {
  margin-top: -40px; /* reduce separación entre bloques */
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #2A827B;
  color: #fff;
  font-size: 18px;
  cursor: pointer;

  display: none; /* 👈 importante */
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 9999;
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
  background: #1f6f68;
}

.platform-media img {
  border-radius: 12px;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.platform-media img:hover {
  transform: scale(1.03);
}

/* Eliminar recuadro negro del video y ajustar bordes */
.video-thumb {
    background: transparent !important; /* Elimina el fondo negro visible en la imagen */
    box-shadow: none !important;        /* Opcional: elimina sombras pesadas si se desea limpieza total */
    border-radius: 12px !important;    /* Aplica el borde curvo de 12px */
    overflow: hidden;
}



/* Ajuste para soportar más pestañas sin desbordar */
.tabs-header {
    display: flex;
    flex-wrap: wrap; /* Permite que las pestañas bajen si son muchas */
    gap: 8px;
    
    margin-bottom: 0;
}

.tab-btn {
   
    order: 1;
    display: block;
    color: #333333;
    padding: 1rem 2rem;
    margin-right: 0.2rem;
    cursor: pointer;
    transition: background ease 0.2s;
    border-left: 1px solid #0a4682;
    border-top: none;
    border-right: none;
    border-bottom: none;
    background: transparent;
}

.tab-btn.active {
   font-weight: bold;
}

.tabs1 {
    display: flex;
    flex-wrap: wrap;
}

.tabs1 input[type="radio"] {
    display: none;
}

input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}
.diagram img {
    border-radius: 12px;
    border: #002a36;
    transition: transform 0.3s ease;
    cursor: zoom-in;
    border-style: solid;
    border-width: 1px;
    border-color: #e7f3fe;
}

.subtitban {
   font-family: var(--body-font);;
    font-size: 32px;
    color: #02495F;
    font-weight: 100 !important;
}

.titban {
    font-family: var(--body-font);
    font-size: 42px;
    color: #02495F;
    font-weight: 100 !important;
}

.btn-primary {
    color: #fff;
    background-color: #02495F;
    border-color: #02495F;
    border-radius: 20px;
    font-size: 16px;
}

.header-eight1 {
    position: relative;
  
    background-color: #fafcfe;
    background-repeat: inherit;
    background-size: cover;
}

.platform-cta {
    background: var(--green);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

#hero-area {
    padding: 0;
    margin: 0;
}

#hero-area .container {
    padding-left: 0;
    padding-right: 0;
}

#hero-area .row {
    margin-left: 0;
    margin-right: 0;
}

#hero-area .col-lg-6,
#hero-area .col-md-6,
#hero-area .col-6 {
    padding-left: 0;
    padding-right: 0;
}
.zoom-img {
    position: relative;
    display: inline-block;
}

.zoom-img img {
    display: block;
    width: 100%;
    height: auto;
}

/* ICONO */
.zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 50%;
    padding: 8px;
    font-size: 16px;
    opacity: 1;
    transition: all 0.3s ease;
}

/* Hover efecto */
.zoom-img:hover .zoom-icon {
    opacity: 1;
}

/* opcional: leve oscurecimiento */
.zoom-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: 0.3s;
}

.zoom-img:hover::after {
    opacity: 1;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-btn {
    width: 100%;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
}

.accordion-content {
    display: none;
    padding: 10px 15px;
}

.accordion-item.active .accordion-content {
    display: block;
}

..footer-container {
    background: #0f5664; /* color institucional */
    padding: 40px 0;
    color: #fff;
}

.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* COLUMNAS */
.footer-column {
    flex: 1;
}

/* LOGO */
.logo-box-new img {
    max-width: 140px;
}

/* TEXTO CENTRAL */
.footer-column:nth-child(2) {
  margin-left: 100px;
    text-align: left;
}

.footer-title {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-info p {
    margin: 5px 0;
    font-size: 15px;
}

/* ICONOS REDES */
.footer-column:nth-child(3) {
    text-align: left;
}

.social-links-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}



@media (max-width: 768px) {
    .footer-flex {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        width: 100%;
    }

    .logo-box-new img {
        margin: 0 auto;
    }
}