.hero-section {
    display: flex;
    width: 100%;
    background-color: #1e1e1e;
    color: #fff;
    padding: 0 40px; /* ¡IMPORTANTE! Quitamos el padding vertical para que la imagen se estire */
    align-items: center;
    box-sizing: border-box;
    flex-direction: row;
    justify-content: space-between;
    min-height: 400px; /* Define una altura mínima para la sección (ajusta este valor si necesitas más o menos alto) */
    /* Puedes usar height: 400px; si quieres una altura fija exacta */
}
        .top-bar {
            background-color: #212529;
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }
/* Contenedor de la imagen a la izquierda */
.hero-image {
    flex: 1; /* Permite que ocupe una parte del espacio */
    /* No necesitamos max-width aquí si flex: 1 ya distribuye el espacio */
    margin-right: 40px; /* Espacio entre la imagen y el bloque de contenido */
    box-sizing: border-box;
    height: 100%; /* ¡CLAVE! Hace que el contenedor de la imagen ocupe el 100% de la altura de .hero-section */
    /* Elimina 'display: flex', 'justify-content' y 'align-items' de aquí, ya no son necesarios si la imagen va a cubrir todo */
    overflow: hidden; /* Asegura que cualquier parte de la imagen que se desborde se recorte */
}

.hero-image img {
    display: block;
    width: 100%; /* La imagen ocupa todo el ancho de .hero-image */
    height: 100%; /* ¡CLAVE! La imagen ocupa todo el alto de .hero-image */
    object-fit: cover; /* ¡CLAVE! Cubre el área sin deformar, recortando si es necesario */
    border-radius: 0; /* Asegura que no haya bordes redondeados en la imagen si quieres que llene la esquina */
}

/* Contenedor del título, botones y texto a la derecha */
.hero-content {
    flex: 1; /* Permite que el contenido ocupe la otra parte del espacio */
    max-width: 50%; /* Limita el ancho máximo del contenido de texto a la mitad */
    padding: 20px; /* Espaciado interno para el contenido de texto */
    box-sizing: border-box;
    text-align: left; /* Alineación del texto a la izquierda */
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;

    /* AÑADE O MODIFICA ESTO: */
    margin-top: 1; /* Elimina cualquier margen superior por defecto */
    /* O si necesitas que suba aún más, usa un valor negativo: */
    /* margin-top: -30px; */ /* Prueba con diferentes valores negativos */
}
.button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-button {
    background-color: transparent;
    color: #fff;
    border: 1px solid #555;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}

.hero-button.active {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.hero-button:hover:not(.active) {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.text-content p {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
    display: none;
}

.text-content p.active-text {
    display: block;
}

/* --- Responsive Design --- */

/* Para pantallas medianas y pequeñas (max-width: 768px), donde queremos que se apilen */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px; /* Restablecemos padding para cuando se apilan */
        min-height: auto; /* La altura mínima se ajusta automáticamente al contenido */
    }

    .hero-image {
        height: auto; /* La imagen se ajusta a su altura natural en móviles */
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image img {
        border-radius: 8px; /* Puedes volver a redondear las esquinas en móviles si quieres */
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .button-group {
        justify-content: center;
    }

    .hero-button {
        font-size: 0.9em;
        padding: 8px 15px;
    }

    .text-content p {
        font-size: 0.95em;
    }
}

/* Ajustes adicionales para pantallas muy pequeñas (móviles) */
@media (max-width: 480px) {
    .hero-section {
        padding: 30px 15px;
    }

    .hero-content h1 {
        font-size: 1.8em;
    }

    .hero-button {
        flex-basis: calc(50% - 5px);
        font-size: 0.85em;
    }
}
/* Grid de posts */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    gap: 2rem;
    
}

/* Cada tarjeta */
.post-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}
.post-card:hover {
    transform: translateY(-5px);
}

.card-image-container {
    position: relative;
}
.card-image-container img {
    width: 100%;
    display: block;
}

/* Fecha sobre imagen */
.date-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #222;
    color: #fff;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
}
.date-overlay .day {
    display: block;
    font-weight: bold;
    font-size: 20px;
}
.date-overlay .month {
    text-transform: uppercase;
    font-size: 12px;
}

/* Contenido */
.card-content {
    padding: 20px;
}
.card-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}
.card-content p {
    font-size: 15px;
    color: #666;
}
.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.read-more-btn:hover {
    background-color: #0056b3;
}

/* Sidebar */
.sidebar .widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.sidebar .widget h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

/* Entradas recientes */
.recent-posts li {
    margin-bottom: 12px;
}
.recent-posts li a {
    font-weight: 500;
    color: #007bff;
    text-decoration: none;
}
.recent-posts li time {
    display: block;
    font-size: 12px;
    color: #888;
}

/* Tags */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag-link {
    background-color: #1ebc5c;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: white;
    text-decoration: none;
}
.tag-link:hover {
    background-color: #ccc;
}

/* Paginación */
.pagination {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}
.page-number {
    padding: 8px 14px;
    background: #eaeaea;
    text-decoration: none;
    border-radius: 6px;
    color: #333;
}
.page-number.active,
.page-number:hover {
    background: #007bff;
    color: #fff;
}

/* WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-weight: 500;
    z-index: 1000;
    transition: background 0.3s;
}
.whatsapp-float:hover {
    background-color: #1ebc5c;
}
.whatsapp-float i {
    font-size: 20px;
}


/* Responsive */
@media (max-width: 768px) {
     .posts-grid {
        grid-template-columns: 1fr; /* 1 por fila en móviles */
    }
}
.recent-posts time {
    display: block;
    color: #1ebc5c;
    font-size: 0.9rem;
    margin-top: 4px;
}

.recent-posts time i {
    margin-right: 6px;
    color: #1ebc5c;
}
/* CUERPO */    

.offer-section {
  padding: 4rem 1rem;
 
}

.offer-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offer-main-text h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.highlight-green {
  color: #00cc33;
}

.offer-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Recuadros */
.info-boxes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .info-boxes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-box {
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.info-box h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px 4px 0 0;
}

/* Colores para cada caja */
.box-blue h4 {
  background-color: #0d6efd;
}

.box-green h4 {
  background-color: #28a745;
}

.box-light-blue h4 {
  background-color: #17a2b8;
}

.box-red h4 {
  background-color: #dc3545;
}

.company-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
}




/* Sección de estadísticas */
.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Permite que los elementos se envuelvan en pantallas pequeñas */
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px; /* Espacio entre las estadísticas y el slider */
}

.stat-item {
    text-align: center;
    margin: 15px;
    flex: 1; /* Permite que los ítems crezcan y se encojan */
    min-width: 180px; /* Ancho mínimo para cada ítem de estadística */
}

.stat-item .number {
    font-size: 2.5em; /* Tamaño de fuente más grande para los números */
    font-weight: bold;
    color: #4CAF50; /* Color verde similar al de la imagen */
    margin-bottom: 5px;
}

.stat-item .text {
    font-size: 1.1em;
    color: #555;
}

/* Sección del carrusel de imágenes */
.image-slider {
    width: 100%;
    overflow: hidden; /* Oculta partes de las imágenes que sobresalen */
    position: relative; /* Para posicionar elementos dentro si los hay (controles) */
    border-radius: 8px; /* Bordes redondeados para el contenedor del slider */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.slider-wrapper {
    display: flex;
    /* Esto es clave para el carrusel: no wrapping, y los elementos se moverán con JS */
    transition: transform 0.5s ease-in-out; /* Transición suave para el cambio de diapositivas */
    /* Ancho total para las 3 diapositivas (si hay 3, sería 300%) */
    width: 100%; /* Inicialmente, mostrar una sola imagen */
}

.slider-image {
    width: 100%; /* Cada imagen ocupa el 100% del ancho del slider-wrapper */
    display: block;
    height: auto; /* Mantiene la proporción de la imagen */
    object-fit: cover; /* Asegura que la imagen cubra el área sin distorsionarse */
    flex-shrink: 0; /* Evita que las imágenes se encojan */
    /* Las imágenes que no están activas pueden estar ocultas o fuera de vista */
    /* Por ejemplo, podrías iniciar con 'display: none;' y activarlas con JS */
}

/* Estilo para la imagen activa (se controlaría con JS) */
/* .slider-image:not(.active) {
    display: none;
} */

/* Media Queries para responsividad */
@media (max-width: 768px) {
    .stat-item {
        flex: 1 1 45%; /* Dos columnas en tablets */
    }

    .stat-item .number {
        font-size: 2em;
    }

    .stat-item .text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .stats {
        padding: 20px 10px;
    }
    .stat-item {
        flex: 1 1 100%; /* Una columna en móviles */
        margin: 10px 0;
    }

    .stat-item .number {
        font-size: 1.8em;
    }

    .stat-item .text {
        font-size: 0.9em;
    }
}



.features-section {
    padding: 60px 0; /* Espaciado interno de la sección */
}

h2 {
    color: #333; /* Color de título */
}

.feature-item {
     background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* **ESTAS SON LAS REGLAS CRÍTICAS PARA LA ANIMACIÓN** */
    opacity: 0; /* Inicialmente oculto */
    transform: translateY(20px); /* Ligeramente desplazado hacia abajo */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    background-color: #4CAF50; /* Verde de la imagen */
    color: #fff;
}


.feature-item h5 {
    color: #333;
    margin-bottom: 5px;
}

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

.central-image {
    max-height: 400px; /* Ajusta la altura máxima de la imagen central */
    width: auto;
    display: block; /* Para centrar con margin auto si es necesario */
    margin: 0 auto; /* Centra la imagen horizontalmente */
}

/* Media queries para responsividad si es necesario afinar algo */
@media (max-width: 767.98px) {
    .central-image {
        margin-bottom: 30px; /* Espacio debajo de la imagen central en móviles */
    }
  
}
/* Estilos adicionales para ajustar la apariencia */
body {
    background-color: #f8f8f8;
    font-family: Arial, sans-serif;
    padding-top: 20px;
}

.features-section {
    padding: 60px 0;
}

h2 {
    color: #333;
}

.feature-item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Estilos para la animación de aparición */
    opacity: 0; /* Inicialmente oculto */
    transform: translateY(20px); /* Ligeramente desplazado hacia abajo */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Transición suave */
}

/* Estilo cuando el elemento es visible */
.feature-item.feature-visible {
    opacity: 1;
    transform: translateY(0);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    background-color: #4CAF50;
    color: #fff;
}

.feature-item h5 {
    color: #333;
    margin-bottom: 5px;
}

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

.central-image {
    max-height: 400px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Media queries para responsividad */
@media (max-width: 767.98px) {
    .central-image {
        margin-bottom: 30px;
    }
}


.feature-section {
    max-width: 800px;
    width: 100%;
    margin-bottom: 30px; /* Space between sections */
}

.feature-item {
    display: flex;
    align-items: flex-start; /* Align icon and text to the top */
    margin-bottom: 25px; /* Space between each feature */
}

.feature-item:last-child {
    margin-bottom: 0; /* No margin after the last item in a section */
}

.icon-placeholder {
    width: 24px; /* Size of the icon area */
    height: 24px;
    margin-right: 15px; /* Space between icon and text */
    flex-shrink: 0; /* Prevent icon from shrinking */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Basic styling for visibility, replace with actual SVG/image background or content */
    border: 1px solid #ccc; /* For placeholder visibility */
    border-radius: 50%; /* If icons are circular */
    font-size: 1.2em; /* For emoji/character placeholders */
    color: #555; /* Color for placeholder content */
}

/* Specific placeholder icons based on the image */
.icon-placeholder.quality::before {
    content: '⚥'; /* Example unicode character, replace with actual icon */
    /* Or use background-image for SVG/PNG */
}

.icon-placeholder.hours::before {
    content: '☺'; /* Example unicode character, replace with actual icon */
}

.icon-placeholder.leaf::before {
    content: '❧'; /* Example unicode character, replace with actual icon */
}

.icon-placeholder.thumbs-up::before {
    content: '👍'; /* Example emoji, replace with actual icon */
}


.feature-content h3 {
    margin: 0;
    font-size: 1.5em; /* Larger font for titles */
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.feature-content p {
    margin: 0;
    font-size: 1em;
    color: #666; /* Lighter color for description */
    line-height: 1.6;
}

.illustration-placeholder {
    width: 100%; /* Take full width of its container */
    max-width: 400px; /* Max width for the illustration */
    height: 250px; /* Fixed height for placeholder, adjust as needed */
    background-color: #f0f0f0; /* Grey background for the placeholder image area */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto; /* Center the image and add vertical space */
    color: #888;
    font-style: italic;
    text-align: center;
    border: 1px dashed #ccc; /* Dashed border for visual cue of placeholder */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.illustration-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures the image fits within the bounds without cropping */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .feature-content h3 {
        font-size: 1.3em;
    }

    .feature-content p {
        font-size: 0.95em;
    }

    .illustration-placeholder {
        height: 200px; /* Adjust height for smaller screens */
        margin: 30px auto;
    }
}

@media (max-width: 480px) {
    .feature-item {
        flex-direction: column; /* Stack icon and text on very small screens */
        align-items: center;
        text-align: center;
    }

    .icon-placeholder {
        margin-right: 0;
        margin-bottom: 10px; /* Space between icon and text when stacked */
    }

    .feature-content h3 {
        font-size: 1.2em;
    }

    .feature-content p {
        font-size: 0.9em;
    }
}
/* Animación de entrada general para los elementos */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px); /* Empieza 20px abajo */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Termina en su posición original */
    }
}

/* Estilos iniciales para los elementos que se animarán dentro de offer-section-2 */
.offer-section-2 .feature-box,
.offer-section-2 .image-section {
    opacity: 0; /* Oculta los elementos al inicio */
    transform: translateY(20px); /* Posiciona los elementos ligeramente abajo al inicio */
}

/* Aplicar la animación a los feature-box dentro de offer-section-2 */
.offer-section-2 .feature-box {
    animation: fadeInSlideUp 0.8s ease-out forwards; /* Duración, tipo de curva, y mantiene el estado final */
}

/* Retrasos para cada feature-box para que aparezcan uno por uno */
.offer-section-2 .feature-box.delay-1 {
    animation-delay: 0.2s; /* El primer elemento aparece después de 0.2 segundos */
}

.offer-section-2 .feature-box.delay-2 {
    animation-delay: 0.4s; /* El segundo elemento aparece después de 0.4 segundos */
}

.offer-section-2 .feature-box.delay-3 {
    animation-delay: 0.6s; /* El tercer elemento aparece después de 0.6 segundos */
}

.offer-section-2 .feature-box.delay-4 {
    animation-delay: 0.8s; /* El cuarto elemento aparece después de 0.8 segundos */
}

/* Animación para la sección de la imagen dentro de offer-section-2 */
.offer-section-2 .image-section {
    animation: fadeInSlideUp 0.8s ease-out forwards;
    animation-delay: 1s; /* La imagen aparece después de las cajas de características */
}


/* Estilos de layout para offer-section-2 y sus hijos, para asegurar la correcta visualización */
.offer-section-2 {
    /* Asegúrate de que tenga un tamaño y sea visible */
    padding: 20px;
    margin: 40px auto; /* Agrega un margen superior para separarla de la sección anterior */
    max-width: 1200px; /* O el ancho que desees para tu sección */
    box-sizing: border-box; /* Asegura que el padding no añada ancho extra */
}

.offer-content-wrapper-2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Permite que las columnas se envuelvan en pantallas pequeñas */
    gap: 30px; /* Espacio entre columnas y la imagen */
}

.offer-section-2 .column {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espacio entre los feature-box dentro de una columna */
    flex: 1; /* Permite que las columnas crezcan y se encojan */
    min-width: 280px; /* Ancho mínimo para las columnas */
}

/* Reutilizamos los estilos de feature-box, icon-wrapper, feature-content, image-section
   Pero los prefijamos con .offer-section-2 para que solo apliquen a esta sección.
   Si ya tienes estos estilos definidos globalmente y quieres que se apliquen a ambas secciones,
   puedes omitir la prefijación en los estilos que sean idénticos.
   Para asegurar que solo apliquen a esta sección, los incluimos así: */

.offer-section-2 .feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* Sombra sutil */
}

.offer-section-2 .icon-wrapper {
    background-color: #4CAF50; /* Color de fondo para el icono */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.offer-section-2 .icon-wrapper img {
    width: 24px; /* Tamaño del icono SVG */
    height: 24px;
    filter: invert(100%); /* Si los iconos son negros y quieres que sean blancos */
}

.offer-section-2 .feature-content h3 {
    margin: 0 0 5px 0;
    font-size: 1.3em;
    color: #333;
}

.offer-section-2 .feature-content p {
    margin: 0;
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
}

.offer-section-2 .image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1.5; /* La imagen puede ocupar más espacio central */
    min-width: 300px;
}

.offer-section-2 .image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Bordes redondeados para la imagen */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Sombra para la imagen */
}

/* Media Queries para responsividad, adaptadas a offer-section-2 */
@media (max-width: 992px) {
    .offer-section-2 .offer-content-wrapper-2 {
        flex-direction: column;
        align-items: center;
    }

    .offer-section-2 .column,
    .offer-section-2 .image-section {
        width: 90%;
        max-width: 500px; /* Limita el ancho en pantallas medianas */
    }
}

@media (max-width: 576px) {
    .offer-section-2 .feature-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .offer-section-2 .icon-wrapper {
        margin-bottom: 10px;
    }
}




/* ANIMADO MISION*/
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f9fafb;
      margin: 0;
      padding: 40px;
      color: #333;
    }

    .info-boxes-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .info-box {
      flex: 1 1 300px;
      background-color: white;
      border-radius: 16px;
      padding: 30px 25px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.6s ease forwards;
    }

    .info-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

    .info-box h4 {
      font-size: 1.4rem;
      margin-bottom: 12px;
      color: #1f2937;
      border-left: 4px solid #3b82f6;
      padding-left: 10px;
    }

    .info-box p,
    .info-box ul {
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .info-box ul {
      padding-left: 20px;
      margin: 0;
    }

    .box-blue { border-top: 5px solid #3b82f6; }
    .box-green { border-top: 5px solid #10b981; }
    .box-light-blue { border-top: 5px solid #60a5fa; }
    .box-red { border-top: 5px solid #ef4444; }

    /* Animaciones con delay */
    .info-box:nth-child(1) { animation-delay: 0.2s; }
    .info-box:nth-child(2) { animation-delay: 0.5s; }
    .info-box:nth-child(3) { animation-delay: 0.8s; }
    .info-box:nth-child(4) { animation-delay: 1.1s; }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .info-boxes-grid {
        flex-direction: column;
        align-items: stretch;
      }
    }
 body {
      font-family: 'Segoe UI', Tahoma, sans-serif;
      margin: 0;
      padding: 30px;
      background-color: #f9fafb;
      color: #1f2937;
    }

    

    .stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
    }

    .stat-item {
      width: 200px;
      background: #f3f4f6;
      border-radius: 16px;
      padding: 30px 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }

    .stat-item:hover {
      transform: translateY(-5px);
    }

    .number {
      font-size: 2.5rem;
      font-weight: bold;
      color: #3b82f6;
      margin-bottom: 10px;
    }

    .text {
      font-size: 1rem;
      color: #374151;
    }

    @media (max-width: 768px) {
      .stat-item {
        width: 100%;
        max-width: 300px;
      }
    }