/* ------------------------------
   Reset / base
   ------------------------------ */
   * { box-sizing: border-box; }
   html,body { height: 100%; }
   body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    background: #f6f6f6;
    color: #565656;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
   
   /* ------------------------------
      Header / banner
      ------------------------------ */
   .header-top {
     background: #cddc28;
     color: #fff;
     display:flex;
     justify-content:space-between;
     align-items:center;
     padding: 0.5rem 1.25rem;
     font-size: 15px;
     font-weight: 700;
   }
   h1 {
    border-left: 5px solid #CDDC28;

   }
   h3 {
    color: #ffffff;
    line-height: normal;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    letter-spacing: 0.3px;
    transition: color 0.3s, border-color 0.3s;
}

.infografia h3 {
    color: #333; /* gris oscuro */
   
  }

/* --- Lista numerada especial --- */
.lista-numerada {
    counter-reset: item;
    padding: 0 25px;
    margin: 25px 0;
    list-style: none;
  }
  
  .lista-numerada li {
    counter-increment: item;
    position: relative;
    margin: 12px 0 12px 40px;
    line-height: 1.6em;
    color: #333;
    font-size: 1.05em;
  }
  
  /* Círculo numerado */
  .lista-numerada li::before {
    content: counter(item);
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    background: #CDDC28;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95em;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  }
/* --- Lista con íconos --- */
.lista-iconos {
    list-style: none;
    padding: 0 25px;
    margin: 25px 0;
  }
  
  .lista-iconos li {
    display: flex;
    align-items: center;
    margin: 12px 0;
    font-size: 1.05em;
    line-height: 1.6em;
    color: #333;
  }
  
  .lista-iconos i {
    background: #CDDC28;
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    flex-shrink: 0;
    font-size: 0.9em;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  }  
  
   .header-top .font-btn {
     background: transparent;
     color: #fff;
     border: 1px solid rgba(255, 255, 255, 0.787);
     padding: 4px 8px;
     font-weight: 700;
     border-radius: 4px;
     cursor: pointer;
     margin-left: 0.4rem;
   }
   .divisor {
    height: 1px;
    width: 100%;
    background: #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin: 25px 0;
    border-radius: 2px;
  }
   
  .caja-destacada {
    background: #cddc28;
    border: 1px solid #ffffff;
    border-radius: 4px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: background 0.3s, color 0.3s;
}

   .logo-container {
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .logo-container img {
    max-width: 350px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .logo-container img:hover {
    transform: scale(1.05);
  }
  
  @media (max-width: 600px) {
    .logo-container img {
      max-width: 280px;
    }

    .logo-container {
        max-width: 400px;
        margin: 20px auto;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
  }
   
   /* Banner: imagen grande con overlay y texto */
   .banner {
     position: relative;
     background-image: url('img/banner.png'); /* reemplaza por tu imagen */
     background-size: cover;
     background-position: center;
     min-height: 250px;
     display:flex;
     align-items:center;
     justify-content:center;
   }
   .banner-overlay {
     position:absolute;
     inset:0;
     background: linear-gradient(90deg, rgba(15,34,68,0.7) 0%, rgba(15,34,68,0.45) 50%, rgba(15,34,68,0.7) 100%);
   }
   .banner-inner {
     position: relative;
     z-index: 2;
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
   }

   .logos

 {
    max-width: 420px;
    width: 100%;
    height: auto;
    float: left;
    margin: 25px 0;
    margin-bottom: 23px;
    content: url(img/logos.svg);
}
   
   /* Títulos del banner */
   .banner-title {
     font-size: 32px;
     margin: 0;
     line-height: 1.05;
     font-family: 'Montserrat-ExtraBold', sans-serif;
     color: #CDDC28; /* Título principal pedido */
     font-weight: 700;
   }
   .banner-title strong { color: #ffffff; }
   
   /* Navegación pequeña dentro del banner */
   .banner-nav {
     margin-top: 1rem;
     display:flex;
     justify-content:center;
     gap: 1rem;
     flex-wrap:wrap;
   }
   .banner-nav a {
     color: #fff;
     text-decoration:none;
     font-weight:600;
     padding: 6px 10px;
   }
   .banner-nav a:hover { color: #CDDC28; }
   
   /* ------------------------------
      Layout central (centrado, 80% ancho max)
      ------------------------------ */
   .layout { padding: 2rem 0; }
   .inner {
     width: 80%;
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     gap: 1.5rem;
     align-items: flex-start;
   }
   
   /* ------------------------------
      Sidebar (menú lateral)
      ------------------------------ */
   .sidebar {
     width: 260px;
     background: #e9e9e9; /* gris medio pedido */
     padding: 1rem;
     border-radius: 6px; /* menos curvo */
     position: relative;
     flex-shrink: 0;
   }
   
   /* hamburguesa a la derecha dentro del sidebar */
   .hamburger {
     position: absolute;
     top: 10px;
     right: 10px;
     border: none;
     background: transparent;
     font-size: 1.6rem;
     cursor: pointer;
     display: none; /* se muestra en mobile por media query */
   }
   
   /* lista del menú */
   .menu {
     list-style: none;
     padding: 0;
   }
   .menu-item {
    padding: 0.6rem 0.6rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: #727272;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background .12s;
}
   .menu-item:hover {
     background: rgba(0,0,0,0.03);
   }
   .menu-item.active {
     background: #00ABAF; /* color seleccionado pedido */
     color: white;
   }
   
   /* ------------------------------
      Zona de contenido
      ------------------------------ */
   .content-area {
     background: #fff;
     padding: 1.75rem;
     border-radius: 10px;
     flex: 1;
     min-height: 220px;
     box-shadow: 0 2px 6px rgba(0,0,0,0.03);
   }
   
   /* títulos: principal y subtítulo colores pedidos */
   .title { color: #CDDC28; margin: 0 0 0.5rem 0; font-size: 1.6rem; }
   .subtitle { color: #00ABAF; margin: 0 0 1rem 0; font-size: 1.05rem; font-weight:600; }
   
   /* paneles (secciones) */
   .panel { display: none; }
   .panel.active { display: block; }
   
   /* ------------------------------
      Infografía (iconos + texto)
      ------------------------------ */
   .infografia {
     display:flex;
     gap: 1rem;
     margin-top: 1.2rem;
     flex-wrap: wrap;
     justify-content: space-between;
   }
   .inf-item {
    background: #fff;
    text-align: center;
    padding: 1rem;
    border-radius: 4px;
    flex: 1 1 30%;
    min-width: 180px;
    box-shadow: 0 1px 4px rgb(0 0 0 / 9%);
   }
   .inf-item img {
     display:block;
     margin: 0 auto 0.6rem;
     height: clamp(200px, 8vw, 200px);
     width: auto;
   }
   .infografia .inf-item img[src$=".svg"] {
    width: 100%;
    display: block;
    max-width: 100%;
  }
   
   /* ------------------------------
      Acordeón (gris oscuro background, + a la derecha color #00ABAF)
      ------------------------------ */
   .accordion { margin-top: 0.6rem; }
   .accordion-item { margin-bottom: 0.6rem; }
   .accordion-header {
     background: #333; /* gris oscuro pedido */
     color: #fff;
     padding: 0.9rem 1rem;
     border: none;
     width: 100%;
     text-align: left;
     display:flex;
     justify-content: space-between;
     align-items:center;
     cursor:pointer;
     border-radius: 6px;
     font-weight:600;
     font-size: 15px;

   }
   .accordion-body {
     display: none;
     background: #f3f3f3;
     padding: 1rem;
     border-radius: 0 0 6px 6px;
     margin-top: 0.15rem;
   }
   
   /* --- Accordion especial con imagen --- */
.accordion-img .accordion-content {
    padding: 0;
  }
  
  .accordion-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }
  
  /* Contenedor de imagen */
  .accordion-img-container {
    flex: 0 0 40%;
    max-width: 40%;
  }
  
  .accordion-img-container img {
    width: 100%;
    max-height: 200px;
    display: block;
    border-radius: 10px;
  }
  
  /* Contenedor de texto */
  .accordion-text {
    flex: 1;
    max-width: 60%;
    font-size: 1.05em;
    line-height: 1.6em;
    color: #333;
  }
  
  /* --- Estado inicial cerrado (para todos los acordeones) --- */
.accordion-content {
    max-height: 0;
    padding: 0 1rem;
    overflow: hidden;
    background: #f3f3f3;
    border-radius: 0 0 6px 6px;
    transition: max-height 0.4s ease;
  }
  
  /* --- Cuando un panel está activo (abierto) --- */
  .accordion-item.active .accordion-content {
    max-height: 1000px; /* valor suficiente para el contenido */
  }
  /* Adaptación responsive */
  @media (max-width: 768px) {
    .accordion-inner {
      flex-direction: column;
    }
  
    .accordion-img-container,
    .accordion-text {
      max-width: 100%;
      flex: 0 0 100%;
    }
  
    .accordion-img-container img {
      margin-bottom: 15px;
    }
  }
  
  /* Modo oscuro */
  body.oscuro .accordion-text {
    color: #eee;
  }
  
   /* símbolo + a la derecha */
   .acc-symbol {
     color: #00ABAF; /* color del + pedido */
     font-size: 1.2rem;
     line-height: 1;
     transition: transform 0.25s ease;
   }
   .accordion-header.open .acc-symbol {
     transform: rotate(45deg); /* gira + a cruz cuando está abierto */
   }
   
   /* ------------------------------
      Tabla
      ------------------------------ */
   .info-table {
     width: 100%;
     border-collapse: collapse;
     margin-top: 1rem;
   }
   .info-table th, .info-table td {
     border: 1px solid #ddd;
     padding: 0.7rem;
     text-align: left;
   }
   .info-table th {
     background: #00ABAF;
     color: #fff;
   }
   
   /* ------------------------------
      Columnas
      ------------------------------ */
   .columns {
     display:flex;
     gap: 1rem;
     margin-top: 0.8rem;
     flex-wrap:wrap;
   }
   .col {
    flex: 1 1 30%;
    color: white;
    min-width: 180px;
    background: #0f2244;
    padding: 3px 10px 0px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}
   .responsive-img {
     max-width: 100%;
     height: auto;
     margin-top: 0.8rem;
     /* Evitar que la imagen sea demasiado pequeña en móvil */
     max-height: none;
   }
   
   /* ------------------------------
      Footer
      ------------------------------ */
   .site-footer {
     background: #0f2244;
     color: #fff;
     margin-top: 2rem;
     padding: 1.5rem 0;
   }
   .footer-inner {
     width: 80%;
     max-width: 1200px;
     margin: 0 auto;
     display:flex;
     align-items:center;
     justify-content:space-between;
     gap: 1rem;
   }
   .footer-logo { height: 58px; }
   
   /* ------------------------------
      Responsive (mobile)
      ------------------------------ */

      @media (min-width: 1200px) {
    .container {
        width: 850px;
    }
}
   @media (max-width: 900px) {
     .inner { flex-direction: column; width: 95%; padding: 0; }
     .sidebar {
       width: 100%;
       display: block;
       padding-top: 2.7rem;
     }
     .hamburger { display: block; }
     .menu { display: none; margin-top: 0.6rem; }
     .menu.open { display: block; }
     .content-area { order: 1; width: 100%; padding: 1rem; }
     .banner { min-height: 230px; }
     .banner-inner { padding: 1.2rem; }
     .inf-item { flex: 1 1 100%; }
     .columns { flex-direction: column; }
     .footer-inner { width: 95%; flex-direction: column; align-items:flex-start; gap: 0.6rem; }
   }
   
  
   