* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #013E43;
    overflow-x: hidden;
    background: #f8f9fa;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 60px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 50, 100, 0.5));
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    line-height: 1.1;
    max-width: 1900px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.5s ease-out;
    text-transform: uppercase;
}

.highlight-number {
    font-weight: 800;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button-primary {
    display: inline-block;
    background: #CBD425;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(203, 212, 37, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(203, 212, 37, 0.4);
    background: #2F703D;
}

.cta-button-secondary {
    display: inline-block;
    background: white;
    color: #013E43;
    border: 2px solid #CBD425;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(203, 212, 37, 0.2);
}

.cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(203, 212, 37, 0.3);
    background: #CBD425;
    color: white;
}

/* Hero Products Section */
.hero-products {
    position: relative;
    width: 100%;
    padding: calc(4rem * 1.3) 0 4rem 0;
    margin-top: 60px;
    background: white;
}

.hero-products-recuadro {
    position: absolute;
    top: 0;
    right: 0;
    width: 22.5%;
    height: 100%;
    background: #CBD425;
    z-index: 0;
}

.hero-products-container {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.hero-products-left {
    width: 65%;
    padding: 2rem 4rem;
    padding-left: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-products-right {
    width: 35%;
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-products-image-wrapper {
    position: relative;
    display: inline-block;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(200%) translateY(8%);
        opacity: 0;
    }
    to {
        transform: translateX(-45%) translateY(8%);
        opacity: 1;
    }
}

.hero-products-image {
    width: 132.25%;
    max-width: 132.25%;
    height: auto;
    object-fit: contain;
    transform: translateX(-45%) translateY(8%);
    position: relative;
    z-index: 1;
    animation: slideInFromRight 1s ease-out forwards;
}


.hero-products-title {
    font-weight: 700;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: #013E43;
    max-width: 75%;
    text-transform: none;
    text-align: center;
}

.hero-products-text {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #013E43;
    max-width: 85%;
    text-align: center;
}

.hero-products-cta {
    display: inline-block;
    background: #CBD425;
    color: #013E43;
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.hero-products-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(1, 62, 67, 0.4);
    background: #013E43;
    color: white;
}

/* Hero Blog Section */
.hero-blog {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-blog-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('blogheader.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* Imagen específica para articulos.html */
.hero-articulos .hero-blog-background {
    background-image: url('bannerarticulos.jpg');
}

.hero-blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 50, 100, 0.5));
    z-index: -1;
}

.hero-blog-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(1, 62, 67, 0.85), rgba(1, 62, 67, 0.3), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero-blog-content {
    position: absolute;
    top: 50%;
    left: 13%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    color: white;
    max-width: 50%;
    padding: 0;
}

.hero-blog-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
    text-transform: none;
}

.hero-blog-highlight {
    color: #CBD425;
}

.hero-blog-text {
    font-size: 1.3rem;
    max-width: 600px;
    font-weight: 300;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.hero-blog-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-blog-btn-primary {
    display: inline-block;
    background: #CBD425;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(203, 212, 37, 0.3);
}

.hero-blog-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(203, 212, 37, 0.4);
    background: #2F703D;
}

/* Publicaciones Destacadas Section */
.publicaciones-destacadas {
    width: 100%;
    padding: 4rem 0;
    background: white;
}

.publicaciones-destacadas-title {
    font-size: 3rem;
    font-weight: 700;
    color: #013E43;
    margin-bottom: 3rem;
    text-align: left;
}

.publicaciones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Explorar Artículos Section */
.explorar-articulos-section {
    padding: 1rem 0 3rem;
    background: white;
    text-align: center;
}

.explorar-articulos-link {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: #013E43;
    text-decoration: none;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: none;
}

.explorar-articulos-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #CBD425;
    transition: width 0.3s ease;
}

.explorar-articulos-link:hover::before {
    width: 100%;
}

.explorar-articulos-link:hover {
    color: #013e43;
}

.publicacion-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.publicacion-card:hover {
    transform: translateY(-5px);
}

.publicacion-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #e0e0e0;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.publicacion-badge-destacado {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #fa8b0d 0%, #c49000 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(1, 62, 67, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(1, 62, 67, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(203, 212, 37, 0.5);
    }
}

.publicacion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.publicacion-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.publicacion-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #013E43;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    min-height: 3.2rem;
    text-align: left;
}

.publicacion-categoria {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: left;
}

.publicacion-categoria-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: #CBD425;
    color: #013E43;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.publicacion-categoria-text {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-bottom: 1.25rem;
    display: block;
}

.publicacion-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.publicacion-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    color: #888;
}

.publicacion-meta i {
    margin-right: 0.4rem;
    color: #CBD425;
}

.publicacion-date,
.publicacion-read {
    display: flex;
    align-items: center;
}

.publicacion-btn {
    display: inline-block;
    background: #CBD425;
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.publicacion-btn:hover {
    background: #2F703D;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(203, 212, 37, 0.3);
}

/* Video Sorteo Section */
.video-sorteo {
    width: 100%;
    padding: 4rem 0;
    background: white;
}

.video-sorteo-content {
    display: grid;
    grid-template-columns: 0.7fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.video-sorteo-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-sorteo-platform {
    color: #FF0000;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.video-sorteo-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #013E43;
    line-height: 1.2;
    margin: 0;
}

.video-sorteo-description {
    font-size: 1.3rem;
    color: #013E43;
    line-height: 1.6;
    margin: 0;
}

.video-sorteo-btn {
    display: inline-block;
    background: transparent;
    color: #013E43;
    padding: 0;
    border-radius: 0;
    text-decoration: underline;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    transition: color 0.3s ease;
    width: fit-content;
}

.video-sorteo-btn:hover {
    color: #CBD425;
}

.video-sorteo-social {
    margin-top: 1rem;
}

.video-sorteo-social-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #013E43;
    margin-bottom: 1rem;
}

.video-sorteo-social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #013E43;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #CBD425;
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.video-sorteo-right {
    position: relative;
}

.video-sorteo-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    background: #e0e0e0;
    z-index: 1;
    cursor: pointer;
}

.video-sorteo-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    z-index: 1;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(203, 212, 37, 0.9);
    border: none;
    border-radius: 50%;
    color: #013E43;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-play-button:hover {
    background: #CBD425;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.video-sorteo-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    z-index: 3;
}

/* Banner Educación Section */
.banner-educacion {
    width: 100%;
    padding: 4rem 0;
    background: white;
}

.banner-educacion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #013E43;
    border-radius: 30px;
    padding: 1.5rem 2.4rem;
}

.banner-educacion-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.banner-educacion-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0;
}

.banner-educacion-text {
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    margin: 0;
}

.banner-educacion-btn {
    display: inline-block;
    background: white;
    color: #013E43;
    padding: 0.5rem 2rem;
    border: 2px solid #013E43;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    width: fit-content;
}

.banner-educacion-btn:hover {
    background: #CBD425;
    border-color: #CBD425;
    color: #013E43;
    transform: translateY(-2px);
}

.banner-educacion-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-educacion-image {
    width: 70%;
    height: auto;
    object-fit: contain;
}

/* Preguntas Frecuentes Section */
.preguntas-frecuentes {
    width: 100%;
    padding: 4rem 0;
    background: white;
}

.preguntas-frecuentes-title {
    font-size: 3rem;
    font-weight: 700;
    color: #013E43;
    text-align: center;
    margin-bottom: 3rem;
}

.preguntas-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pregunta-item {
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pregunta-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    cursor: pointer;
}

.pregunta-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #CBD425;
    min-width: 40px;
}

.pregunta-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #013E43;
}

.pregunta-toggle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #013E43;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pregunta-toggle:hover {
    background: #CBD425;
}

.pregunta-toggle i {
    font-size: 1rem;
}

.pregunta-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.pregunta-item.active .pregunta-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.pregunta-answer p {
    margin: 0;
    padding-left: 55px;
    padding-right: 2rem;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    max-width: 85%;
}

/* Responsive Preguntas Frecuentes */
@media (max-width: 768px) {
    .preguntas-frecuentes-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .pregunta-header {
        padding: 1rem;
        gap: 1rem;
    }

    .pregunta-number {
        font-size: 1.2rem;
        min-width: 30px;
    }

    .pregunta-text {
        font-size: 0.95rem;
    }

    .pregunta-answer p {
        padding-left: 45px;
        font-size: 0.9rem;
    }
}

/* Responsive Banner Educación */
@media (max-width: 968px) {
    .banner-educacion-content {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .banner-educacion-title {
        font-size: 2rem;
    }

    .banner-educacion-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

/* Responsive Video Sorteo */
@media (max-width: 968px) {
    .video-sorteo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .video-sorteo-title {
        font-size: 2rem;
    }
}

/* Responsive Publicaciones Destacadas */
@media (max-width: 1200px) {
    .publicaciones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .publicaciones-destacadas-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .publicaciones-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Hero Blog */
@media (max-width: 768px) {
    .hero-blog {
        height: 70vh;
        min-height: 400px;
    }

    .hero-blog-content {
        padding: 0 2rem;
        text-align: left;
    }

    .hero-blog-title {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-blog-text {
        font-size: 1rem;
        max-width: 100%;
    }
}

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

/* Hero Divider Section */
.hero-divider {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 2rem 4rem;
    gap: 1.5rem;
    background: white;
}

.hero-divider-line {
    flex: 1;
    height: 3px;
    background: #CBD425;
}

.hero-divider-text {
    color: #013E43;
    font-weight: 600;
    font-size: 1.4rem;
    white-space: nowrap;
    text-transform: lowercase;
}

/* Mapa Interactivo Section */
.mapa-interactivo-section {
    width: 100%;
    padding: 4rem 0;
    background: white;
}

.mapa-interactivo-content {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.mapa-interactivo-left {
    width: 100%;
}

.mapa-interactivo-container {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
}

/* Leaflet Map Styles */
#mapaInteractivo {
    width: 100%;
    height: 690px;
    border-radius: 20px;
    z-index: 1;
    min-height: 690px;
}

.leaflet-container {
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
}

.leaflet-popup-content-wrapper {
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
}

.leaflet-popup-content {
    margin: 0.8rem 1.2rem;
    font-size: 0.9rem;
    color: #013E43;
}

.leaflet-marker-custom {
    background: transparent !important;
    border: none !important;
}

.leaflet-control-zoom {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.leaflet-control-zoom a {
    background-color: rgb(255, 255, 255) !important;
    color: #013E43 !important;
    border: none !important;
    border-radius: 5px !important;
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    margin: 8px 0 !important;
}

.leaflet-control-zoom a:hover {
    background-color: #CBD425 !important;
    color: #013E43 !important;
}

.mapa-interactivo-right {
    width: 100%;
}

.mapa-busqueda-container {
    background: white;
    border-radius: 20px;
    padding: 1.7rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mapa-busqueda-input-wrapper {
    position: relative;
    margin-bottom: 1.7rem;
}

.mapa-busqueda-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #013E43;
    outline: none;
    transition: border-color 0.3s ease;
}

.mapa-busqueda-input:focus {
    border-color: #CBD425;
}

.mapa-busqueda-input::placeholder {
    color: #999;
}

.mapa-busqueda-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #013E43;
    font-size: 1.2rem;
}

/* Botón de ubicación */
.mapa-ubicacion-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #CBD425;
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.7rem;
    box-shadow: 0 2px 8px rgba(47, 112, 61, 0.3);
}

.mapa-ubicacion-btn:hover {
    background: #013E43;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 112, 61, 0.4);
}

.mapa-ubicacion-btn:disabled {
    background: #999;
    cursor: not-allowed;
    transform: none;
}

.mapa-ubicacion-btn i {
    font-size: 1.1rem;
}

.mapa-busqueda-resultados {
    max-height: 460px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mapa-busqueda-resultados::-webkit-scrollbar {
    width: 8px;
}

.mapa-busqueda-resultados::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.mapa-busqueda-resultados::-webkit-scrollbar-thumb {
    background: #CBD425;
    border-radius: 10px;
}

.mapa-busqueda-resultados::-webkit-scrollbar-thumb:hover {
    background: #a8b41d;
}

.mapa-busqueda-titulo {
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
}

.mapa-busqueda-titulo p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #013E43;
    margin: 0;
}

.mapa-busqueda-sin-resultados {
    padding: 2rem 1rem;
    text-align: center;
}

.mapa-busqueda-sin-resultados p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.mapa-departamentos-list {
    max-height: 460px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mapa-departamento-item {
    display: flex;
    flex-direction: column;
}

.mapa-departamentos-list::-webkit-scrollbar {
    width: 8px;
}

.mapa-departamentos-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.mapa-departamentos-list::-webkit-scrollbar-thumb {
    background: #CBD425;
    border-radius: 10px;
}

.mapa-departamentos-list::-webkit-scrollbar-thumb:hover {
    background: #a8b41d;
}

.mapa-departamento-btn {
    width: 96%;
    padding: 1rem 1.5rem;
    background: #f5f5f5;
    border: none;
    border-radius: 15px;
    color: #013E43;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mapa-departamento-chevron {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mapa-departamento-btn:hover {
    background: #e8e8e8;
    transform: translateX(5px);
}

.mapa-departamento-btn.active {
    background: #CBD425;
    color: #013E43;
    font-weight: 600;
}

/* Lista de EDS por departamento */
.mapa-eds-list-container {
    margin-top: 0.5rem;
    padding: 0.8rem;
    background: #f9f9f9;
    border-radius: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.mapa-eds-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mapa-eds-list::-webkit-scrollbar {
    width: 6px;
}

.mapa-eds-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.mapa-eds-list::-webkit-scrollbar-thumb {
    background: #CBD425;
    border-radius: 10px;
}

.mapa-eds-list::-webkit-scrollbar-thumb:hover {
    background: #a8b41d;
}

.mapa-eds-item {
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 95%;
}

/* Menos espacio para items dentro de la lista de departamentos */
.mapa-eds-list .mapa-eds-item {
    margin-bottom: 0.1rem;
}

.mapa-eds-list .mapa-eds-item:last-child {
    margin-bottom: 0;
}

/* Más espacio para items en resultados de búsqueda */
.mapa-busqueda-resultados .mapa-eds-item {
    margin-bottom: 1rem;
}

.mapa-busqueda-resultados .mapa-eds-item:last-child {
    margin-bottom: 0;
}

.mapa-eds-item:hover {
    background: #e8e8e8;
    transform: translateX(5px);
}

.mapa-eds-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mapa-eds-item-nombre {
    font-size: 0.95rem;
    font-weight: 600;
    color: #013E43;
}

.mapa-eds-item-ciudad {
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
}

.mapa-eds-item-distancia {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2F703D;
    margin-top: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.mapa-distancia-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

/* Botón en popup del mapa */
.popup-eds-btn {
    display: block;
    padding: 0.3rem 0;
    background: transparent;
    color: #013E43 !important;
    text-decoration: none;
    border: none;
    border-bottom: 2px solid #CBD425;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    margin-top: 0rem;
    text-align: center;
    width: 100%;
}

.popup-eds-btn:hover {
    border-bottom-color: #a8b41d;
    color: #013E43 !important;
}

/* Asegurar que los enlaces dentro del popup usen el color corporativo */
.leaflet-popup-content a {
    color: #013E43 !important;
}

/* Estadísticas Section */
.estadisticas-section {
    width: 100%;
    padding: 4rem 0;
    background: white;
}

.estadisticas-banner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #013E43;
    border-radius: 30px;
    padding: 2rem 2rem;
    gap: 2rem;
}

.estadistica-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.estadistica-numero {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.estadistica-texto {
    font-size: 2rem;
    font-weight: 400;
    color: white;
    line-height: 1;
    text-transform: lowercase;
}

.estadistica-divider {
    width: 6px;
    height: 80px;
    background: white;
    border-radius: 10px;
}

/* Formulario Contacto Section */
.formulario-contacto-section {
    width: 100%;
    padding: 4rem 0;
    background: white;
}

.formulario-contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.formulario-contacto-left {
    background: #f8f9fa;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.formulario-contacto-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: #013E43;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.formulario-contacto-subtitle {
    font-size: 1.7rem;
    font-weight: 400;
    color: #013E43;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.formulario-contacto-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.formulario-contacto-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.formulario-contacto-icon {
    width: 24px;
    height: 24px;
    margin-top: 0.2rem;
}

.formulario-contacto-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.formulario-contacto-info-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #013E43;
}

.formulario-contacto-info-value {
    font-size: 1rem;
    font-weight: 400;
    color: #013E43;
}

.formulario-contacto-right {
    background: #CBD425;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.formulario-contacto-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.formulario-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.formulario-label {
    font-size: 1rem;
    font-weight: 600;
    color: #013E43;
}

.formulario-input,
.formulario-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #013E43;
    background: white;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.formulario-input:focus,
.formulario-textarea:focus {
    box-shadow: 0 0 0 3px rgba(1, 62, 67, 0.1);
}

.formulario-input::placeholder,
.formulario-textarea::placeholder {
    color: #999;
}

.formulario-textarea {
    resize: vertical;
    min-height: 120px;
}

.formulario-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #013E43;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.formulario-submit-btn:hover {
    background: #012a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 62, 67, 0.3);
}

/* Responsive - Estadísticas */
@media (max-width: 968px) {
    .estadisticas-banner {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
    }

    .estadistica-divider {
        width: 80%;
        height: 1px;
    }

    .estadistica-numero {
        font-size: 3rem;
    }

    .estadistica-texto {
        font-size: 1rem;
    }

    .formulario-contacto-content {
        grid-template-columns: 1fr;
    }

    .formulario-contacto-left,
    .formulario-contacto-right {
        padding: 2rem;
    }

    .formulario-contacto-title {
        font-size: 2rem;
    }
}

/* Responsive - Mapa Interactivo */
@media (max-width: 968px) {
    .mapa-interactivo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mapa-interactivo-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .mapa-interactivo-section {
        padding: 2rem 0;
    }
    
    .mapa-busqueda-container {
        padding: 1.5rem;
    }
    
    .mapa-interactivo-container {
        height: 350px;
    }
    
    .mapa-departamentos-list {
        max-height: 300px;
    }
}

/* Producto del Mes Section */
.producto-mes {
    width: 100%;
    padding: 4rem 0;
    background: #f8f9fa;
}

.producto-mes-content {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: #efefef;
    border-radius: 30px;
    padding: 2.55rem 3rem;
    max-width: 90%;
    margin: 0 auto;
}

.producto-mes-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-5%);
}

.producto-mes-image-wrapper {
    background: white;
    border-radius: 30px;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75%;
    max-width: 75%;
}

.producto-mes-image {
    max-width: 50%;
    width: 50%;
    height: auto;
    object-fit: contain;
}

.producto-mes-right {
    flex: 1;
    padding: 0rem;
}

.producto-mes-title {
    font-size: 4rem;
    font-weight: 700;
    color: #013E43;
    margin-bottom: 0.2rem;
}

.producto-mes-title-medium {
    font-weight: 500;
}

.producto-mes-description {
    font-size: 1.8rem;
    color: #013E43;
    line-height: 1;
    margin-bottom: 2rem;
}

.producto-mes-italic {
    font-style: italic;
}

.producto-mes-beneficios {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.producto-mes-beneficio {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #013E43;
    line-height: 1.5;
}

.producto-mes-icon {
    width: 2.3rem;
    height: 2.3rem;
    flex-shrink: 0;
    object-fit: contain;
}

.producto-mes-countdown {
    margin-top: 0rem;
}

.producto-mes-countdown-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #013E43;
    margin-bottom: 0.25rem;
}

.producto-mes-countdown-container {
    display: flex;
    gap: 1rem;
}

.producto-mes-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.producto-mes-countdown-number {
    width: 60px;
    height: 60px;
    background: #013E43;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    font-weight: 700;
    border: 2px solid white;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.producto-mes-countdown-label {
    font-size: 0.9rem;
    color: #013E43;
    font-weight: 500;
    text-transform: uppercase;
}

/* Catálogo de Productos Section */
.catalogo-productos {
    width: 100%;
    padding: 4rem 0 4.5rem 0;
    background: white;
}

.catalogo-productos-title {
    font-size: 3rem;
    font-weight: 700;
    color: #013E43;
    text-align: center;
    margin-bottom: 3rem;
}

.catalogo-categorias {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    background: #f1f1f1;
    border-radius: 30px;
    padding: 0rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    height: fit-content;
}

.categoria-btn {
    padding: 0.7rem 2.5rem;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border: none;
    background: transparent;
    color: #013E43;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.categoria-btn:hover {
    opacity: 0.8;
}

.categoria-activa {
    background: linear-gradient(90deg, #dddc02 0%, #ccd423 100%);
    color: #013E43;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        transform: scale(0.95);
        opacity: 0.8;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.catalogo-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: #e0e0e0;
    margin: 1rem 0;
}

.producto-card {
    background: transparent;
    border-radius: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: none;
    transition: transform 0.3s ease;
    height: 100%;
}

.producto-card:hover {
    transform: translateY(-5px);
}

.producto-card-image {
    width: 187.5px;
    height: 250px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.producto-card-image-dieselpower8 {
    width: 215.625px;
    height: 287.5px;
}

.producto-card-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #013E43;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.producto-card-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 2;
    flex: 1;
}

.producto-card-buttons {
    margin-top: auto;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Centrar el botón cuando solo hay uno (sin botón de video) */
.producto-card-buttons .producto-card-btn:only-child {
    max-width: 200px;
    margin: 0 auto;
}

.producto-card-btn {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    background: #CBD425;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    flex: 1;
    min-width: 180px;
    max-width: 200px;
}

.producto-card-btn:hover {
    background: #b8c420;
    transform: scale(1.05);
}

.producto-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #013E43;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.producto-card-btn:hover .producto-card-icon {
    transform: rotate(90deg);
}

.producto-card-text {
    flex: 1;
    padding: 0.6rem 0.8rem;
    text-align: center;
}

.producto-card-btn-video {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: #013E43;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
    max-width: 200px;
}

.producto-card-btn-video:hover {
    background: #025057;
    transform: scale(1.05);
}

.producto-card-btn-video i {
    font-size: 0.9rem;
}

/* Sección de Asesoría WhatsApp */
.asesoria-section {
    background: #f8f9fa;
    padding: 3rem 0;
    margin-top: 0;
}

.asesoria-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.asesoria-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #013E43;
    margin: 0;
    text-align: center;
}

.asesoria-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.asesoria-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.asesoria-btn i {
    font-size: 1.5rem;
}

/* Responsive Asesoría Section */
@media (max-width: 768px) {
    .asesoria-section {
        padding: 2rem 0;
        margin-top: 0;
    }

    .asesoria-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .asesoria-text {
        font-size: 1.2rem;
    }

    .asesoria-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* Features Section */
.features {
    background: #013E43;
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.features-container {
    display: flex;
    align-items: center;
    gap: 10rem;
    padding: 0 2rem;
    width: 400%;
    animation: scroll 30s linear infinite;
    flex-wrap: nowrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
    justify-content: center;
    min-width: 200px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    white-space: nowrap;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}


/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #013E43 70%, #CBD425 30%);
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

/* Ocultar top-bar en index.html */
body.index-page .top-bar {
    display: none;
}

/* Ajustar navbar cuando no hay top-bar */
body.index-page .navbar {
    top: 0;
}

/* Ocultar top-bar en móvil para todos los HTML */
@media (max-width: 768px) {
    .top-bar {
        display: none !important;
    }

    .navbar {
        top: 0 !important;
    }
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: -200px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-icon {
    width: 16px;
    height: 16px;
}

.top-bar-separator {
    width: 3px;
    height: 20px;
    background: #CBD425;
}

.top-bar-text {
    color: white;
    font-size: 1.08rem;
    font-weight: 500;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-right: -50px;
}

.top-bar-indicator {
    width: 26px;
    height: 26px;
}

.top-bar-indicator a {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.top-bar-indicator a:hover {
    transform: scale(1.1);
}

.top-bar-indicator img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    background: #F8FBFB;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 81px;
    width: auto;
}

/* Botón hamburguesa - Oculto en desktop */
.mobile-menu-toggle {
    display: none !important;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 60px;
}

.nav-links a {
    color: #013E43;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #2F703D;
}

.nav-links a.active {
    color: #2F703D;
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #CBD425;
}

.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #CBD425;
}

/* Ocultar "Ruta Diesel Power" en el header */
.nav-links a[href*="ruta-diesel"],
.nav-links li:has(a[href*="ruta-diesel"]) {
    display: none !important;
}

/* Contenedor de botones del lado derecho del navbar */
.nav-right-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Botón PSE en Navbar */
.nav-pse-btn {
    display: inline-block;
    background: #CBD425;
    color: #013E43;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(203, 212, 37, 0.3);
}

.nav-pse-btn:hover {
    background: #2F703D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 112, 61, 0.4);
}

/* Enlace Certificados en Navbar */
.nav-certificados-link {
    color: #013E43;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.nav-certificados-link:hover {
    color: #2F703D;
}

.nav-certificados-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #CBD425;
    transition: width 0.3s ease;
}

.nav-certificados-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #013E43;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
}

.dropdown-menu a:hover {
    background: #F8FBFB;
    color: #2F703D;
    transform: translateX(5px);
}

.dropdown-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #CBD425;
    border-radius: 1px;
}

/* Nosotros Banner Section */
.nosotros-banner {
    position: relative;
    width: 100%;
    margin-top: 140px;
    overflow: hidden;
}

.nosotros-banner-image {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.nosotros-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.1);
}

.nosotros-banner-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(1, 62, 67, 0.85), rgba(1, 62, 67, 0.3), transparent);
    z-index: 1;
    pointer-events: none;
}

.nosotros-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #013E43;
    opacity: 0.5;
    z-index: 1;
}

.nosotros-banner-content {
    position: absolute;
    top: 40%;
    left: 13%;
    transform: translateY(-50%);
    text-align: left;
    z-index: 2;
    max-width: 50%;
}

.nosotros-banner-text {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.nosotros-banner-subtitle {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 5rem;
    margin-bottom: 1rem;
    line-height: 1;
    text-transform: none;
}

.nosotros-banner-description {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.nosotros-banner-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.nosotros-banner-btn-primary {
    display: inline-block;
    background: #CBD425;
    color: #013E43;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(203, 212, 37, 0.3);
}

.nosotros-banner-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(203, 212, 37, 0.4);
    background: #2F703D;
    color: white;
}

/* Nosotros Divider */
.nosotros-divider {
    width: 75%;
    height: 300px;
    margin: -150px auto 0;
    position: relative;
    z-index: 10;
    display: flex;
    gap: 20px;
}

.nosotros-divider-part {
    flex: 1;
    background: #CBD425;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nosotros-divider-part:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.divider-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.divider-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.divider-icon-valores {
    margin-top: -3rem;
    margin-bottom: 1rem;
}

.divider-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #013E43;
    margin-bottom: 0.1rem;
    position: relative;
}

.divider-title-valores {
    position: relative;
    margin-top: 0;
}

.divider-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #013E43;
    line-height: 1.6;
    margin: 0;
}

.divider-list {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #013E43;
    line-height: 1.8;
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.divider-list li {
    margin-bottom: 0.4rem;
    position: relative;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-section-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 100%;
    margin: 0 auto;
}

.about-section-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #013E43;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

.about-section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 1rem auto 0;
    line-height: 1.8;
}

/* Timeline */
.timeline {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 2.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 200px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #CBD425;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
}

.timeline-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.timeline-year {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #013E43;
    margin-bottom: 0.3rem;
    position: relative;
    top: -40px;
}

.timeline-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    top: -40px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #CBD425;
    border: 4px solid #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.timeline-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(203, 212, 37, 0.5);
}


.timeline-description {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #013E43;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    text-align: center;
}

.timeline-description::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.timeline-item.active .timeline-description {
    opacity: 1;
    visibility: visible;
}

.timeline-link-container {
    text-align: center;
    margin-top: 1.5rem;
}

.timeline-link {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #013E43;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.timeline-link:hover {
    color: #2F703D;
    border-bottom-color: #CBD425;
}

/* Productos Destacados Section */
.productos-destacados {
    padding: 120px 0;
    background: white;
}

.productos-destacados-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #013E43;
    text-align: center;
    margin-bottom: 4rem;
}

.productos-destacados-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    max-width: 1800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.producto-destacado-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    flex: 1;
    min-width: 350px;
}

.producto-destacado-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: white;
    min-height: 500px;
}

.producto-destacado-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    display: block;
}

.producto-destacado-label {
    background: #CBD425;
    padding: 1.8rem 1.5rem;
    text-align: center;
    width: 100%;
}

.producto-destacado-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #013E43;
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
}

.producto-destacado-ver-beneficios {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #013E43;
    text-decoration: none;
    display: block;
    text-align: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.producto-destacado-ver-beneficios:hover {
    color: #013E43;
    text-decoration: underline;
    text-decoration-color: white;
    text-decoration-thickness: 1.1px;
    text-underline-offset: 5px;
}

.about-section-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-section-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #013E43;
    line-height: 1.8;
    margin: 0;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #013E43;
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    margin-bottom: 3rem;
}

.about-text {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: #013E43;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: #2F703D;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.2rem;
    font-weight: 500;
    color: #013E43;
    line-height: 1.6;
    text-align: left;
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-team-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-top: 2rem;
    margin-left: 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
    align-items: flex-start;
}

.stat-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: #013E43;
    line-height: 1;
    animation: countUp 2s ease-out;
    text-align: left;
    min-width: 80px;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-description {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
}

.about-cta {
    text-align: left;
    margin-top: 2rem;
}

.about-cta-button {
    display: inline-block;
    background: #013E43;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 62, 67, 0.3);
}

.about-cta-button:hover {
    background: #CBD425;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(203, 212, 37, 0.4);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: white;
    overflow: visible;
}

.products-lines-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #013E43;
    margin: 0 0 4.84rem 0;
    text-align: center;
}

.products-lines-container {
    display: flex;
    gap: 3.63rem;
    justify-content: center;
    align-items: stretch;
    max-width: 1694px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.product-line-card {
    background: white;
    border-radius: 36.3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2.42rem;
    padding: 3.025rem;
    flex: 1;
    min-width: 605px;
    max-width: 726px;
}

.product-line-card-image {
    flex-shrink: 0;
    width: 242px;
    height: 363px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-line-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-line-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.815rem;
    flex: 1;
}

.product-line-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.42rem;
    font-weight: 700;
    color: #013E43;
    margin: 0;
    line-height: 1.2;
}

.product-line-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.331rem;
    font-weight: 400;
    color: #013E43;
    margin: 0;
    line-height: 1.6;
}

.product-line-cta {
    display: inline-block;
    background: #CBD425;
    color: #013E43;
    padding: 0.968rem 2.42rem;
    border-radius: 36.3px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.21rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.product-line-cta:hover {
    background: #A6CE39;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(203, 212, 37, 0.4);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 14.85rem;
    max-width: 87.5%;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 345px;
    position: relative;
    overflow: visible;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #013E43;
    margin-bottom: 0.1rem;
    position: relative;
    z-index: 2;
}

.product-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.product-card-image {
    width: 100%;
    max-width: 322px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.product-card-image-small {
    max-width: 225px;
}

.product-cta {
    display: inline-block;
    background: #CBD425;
    color: #013E43;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(203, 212, 37, 0.3);
}

.product-cta:hover {
    background: #2F703D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 112, 61, 0.4);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: #F8FBFB;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #013E43;
    margin-bottom: 1rem;
}

.benefit-description {
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

/* Ruta Diesel Power Section */
.diesel-power {
    padding: 0;
    background: white;
}

.diesel-power-banner {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diesel-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.diesel-power-content {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 35%;
    text-align: center;
    z-index: 10;
}

.diesel-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-top: 120px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.diesel-description {
    font-size: 1.1rem;
    font-weight: 400;
    color: white;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: justify center;
}

.diesel-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.diesel-cta-button {
    display: inline-block;
    background: white;
    color: #81b827;
    padding: 15px 60px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.diesel-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: #f5f5f5;
}

/* Historia y Trayectoria Section */
.historia {
    padding: 100px 0;
    background: white;
}

.historia-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.historia-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-auto-rows: minmax(150px, auto);
    gap: 1.5rem;
    margin-top: 3rem;
}

.historia-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.historia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.historia-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tarjeta grande izquierda */
.historia-card-large {
    grid-row: span 2;
    min-height: 100px;
    max-height: 610px;
    height: 610px;
}

.historia-card-large .historia-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.historia-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
}

.historia-tag {
    display: inline-block;
    background: #CBD425;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.historia-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.historia-card-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: 400;
}

.historia-card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.historia-date-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.historia-date-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.historia-card-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Columna central con tarjetas pequeñas */
.historia-column-center {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.historia-card-small {
    display: flex;
    flex-direction: column;
    min-height: 100px;
}

.historia-card-small .historia-card-img {
    height: 33px;
    object-fit: cover;
}

.historia-card-content {
    padding: 1.5rem;
    background: white;
}

.historia-card-title-small {
    font-size: 1.1rem;
    font-weight: 700;
    color: #013E43;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.historia-card-content .historia-tag {
    background: #2F703D;
}

.historia-card-content .historia-card-meta {
    color: #999;
    font-size: 0.85rem;
}

/* Columna derecha con tarjetas medianas */
.historia-column-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.historia-card-medium {
    min-height: 290px;
}

.historia-card-medium .historia-card-img {
    height: 100%;
}

.historia-card-medium .historia-card-overlay {
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.historia-card-title-medium {
    font-size: 1.4rem;
    font-weight: 700;
    color: #013E43;
    line-height: 1.3;
}

/* Aliados Section */
.aliados {
    padding: 100px 0;
    background: #F8FBFB;
}

.aliados-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.aliados-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.aliados-scroll-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.aliados-row {
    display: flex;
    gap: 2rem;
    align-items: center;
    width: fit-content;
}

.aliados-row-top {
    animation: scroll-right 30s linear infinite;
}

.aliados-row-bottom {
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.aliado-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.aliado-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.aliado-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.aliado-item:hover .aliado-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Logo grupo - 20% más grande */
.aliado-item img[alt="Grupo"] {
    max-height: 96px;
    transform: scale(1.2);
}

/* Logo éxito - 20% más grande */
.aliado-item img[alt="Éxito"] {
    max-height: 96px;
    transform: scale(1.2);
}

/* Logo cencosud - 20% más grande */
.aliado-item img[alt="Cencosud"] {
    max-height: 96px;
    transform: scale(1.2);
}

/* Logo combured - 20% más grande */
.aliado-item img[alt="Combured"] {
    max-height: 96px;
    transform: scale(1.2);
}

/* Logo terpel - 20% más grande */
.aliado-item img[alt="Terpel"] {
    max-height: 96px;
    transform: scale(1.2);
}

/* Logo primax - 20% más grande */
.aliado-item img[alt="Primax"] {
    max-height: 96px;
    transform: scale(1.2);
}

/* Logo autogas - 20% más grande */
.aliado-item img[alt="Autogas"] {
    max-height: 96px;
    transform: scale(1.2);
}

/* Equipo de Ventas Section */
.equipo-ventas {
    padding: 100px 0;
    background: white;
}

.equipo-ventas-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.equipo-ventas-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.equipo-ventas-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

/* Responsive - Equipo de Ventas */
@media (max-width: 1200px) {
    .equipo-ventas-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.equipo-ventas-item {
    text-align: center;
    background: #F8FBFB;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipo-ventas-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.equipo-ventas-foto {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #CBD425;
    background: white;
}

.equipo-ventas-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Estilos específicos para cada asesor */
.equipo-ventas-foto img[src*="eduardofoto.jpg"] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.equipo-ventas-foto img[src*="alexfoto.png"] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.equipo-ventas-foto img[src*="wilmerfoto.png"] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: translateX(0%) translateY(0%);
}

.equipo-ventas-foto img[src*="pedrofoto.jpg"] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: translateX(0%) translateY(7%);
}

.equipo-ventas-foto img[src*="luzmafoto.jpg"] {
    width: 120%;
    height: 120%;
    object-fit: contain;
    object-position: center center;
    transform: translateX(-5%) translateY(0%);
}

.equipo-ventas-foto img[src*="tatiana foto.png"] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: translateX(-0%) translateY(0%);
}

.equipo-ventas-foto img[src*="esperanzafoto.png"] {
    width: 108%;
    height: 108%;
    object-fit: contain;
    object-position: center center;
    transform: translateX(-4%) translateY(0%);
}

.equipo-ventas-foto img[src*="fabianfoto.jpg"] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.equipo-ventas-foto img[src*="williamfoto.jpg"] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.equipo-ventas-foto img[src*="stephanyfoto.jpg"] {
    width: 110%;
    height: 110%;
    object-fit: contain;
    object-position: center center;
    transform: translateX(-4%) translateY(0%);
}

.equipo-ventas-nombre {
    font-size: 1.1rem;
    font-weight: 600;
    color: #013E43;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.equipo-ventas-zona {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.equipo-ventas-contactar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-top: 1rem;
    justify-content: center;
}

.equipo-ventas-contactar:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.equipo-ventas-contactar svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.equipo-ventas-contactar span {
    display: inline-block;
}

/* Mapa Nacional Section */
.mapa-nacional {
    padding: 100px 0;
    background: white;
}

.mapa-nacional-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mapa-imagen-columna {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapa-wrapper {
    position: relative;
    display: inline-block;
    z-index: 1;
    transform: translateX(-10%);
}

.mapa-imagen {
        width: 100.8%;
    height: auto;
    max-width: 655px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Puntos verdes parpadeantes */
.punto-verde {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #013E43;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(1, 62, 67, 0.8);
    animation: parpadear 2s infinite;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.punto-verde:hover {
    transform: scale(1.3);
}

/* Recuadro de información de ciudad */
.ciudad-info {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-width: 150px;
    text-align: center;
    border: 2px solid #013E43;
}

.ciudad-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.ciudad-info::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.ciudad-nombre {
    font-size: 1rem;
    font-weight: 600;
    color: #013E43;
    margin: 0;
}

.punto-1 {
    top: 55px;
    left: 215px;
    animation-delay: 0s;
}

.punto-2 {
    top: 65px;
    left: 180px;
    animation-delay: 0.3s;
}

.punto-3 {
    top: 90px;
    left: 160px;
    animation-delay: 0.6s;
}

.punto-4 {
    top: 140px;
    left: 170px;
    animation-delay: 0.9s;
}

.punto-5 {
    top: 160px;
    left: 140px;
    animation-delay: 1.2s;
}

.punto-7 {
    top: 230px;
    left: 250px;
    animation-delay: 1.8s;
}

.punto-8 {
    top: 250px;
    left: 160px;
    animation-delay: 2.1s;
}

.punto-9 {
    top: 285px;
    left: 240px;
    animation-delay: 2.4s;
}

.punto-10 {
    top: 297px;
    left: 155px;
    animation-delay: 2.7s;
}

.punto-11 {
    top: 310px;
    left: 145px;
    animation-delay: 3.0s;
}

.punto-12 {
    top: 330px;
    left: 145px;
    animation-delay: 3.3s;
}

.punto-13 {
    top: 340px;
    left: 160px;
    animation-delay: 3.6s;
}

.punto-14 {
    top: 325px;
    left: 210px;
    animation-delay: 3.9s;
}

.punto-15 {
    top: 340px;
    left: 230px;
    animation-delay: 4.2s;
}

.punto-16 {
    top: 365px;
    left: 115px;
    animation-delay: 4.5s;
}

.punto-17 {
    top: 385px;
    left: 165px;
    animation-delay: 4.8s;
}

.punto-18 {
    top: 415px;
    left: 105px;
    animation-delay: 5.1s;
}

@keyframes parpadear {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

.mapa-texto-columna {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 2rem;
}

.mapa-titulo {
    font-size: 2.5rem;
    font-weight: 800;
    color: #013E43;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.mapa-subtitulo {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2F703D;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.mapa-texto-apoyo {
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mapa-boton {
    display: inline-block;
    background: #CBD425;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(203, 212, 37, 0.3);
    text-align: center;
    align-self: flex-start;
    margin-top: 1rem;
}

.mapa-boton:hover {
    background: #014746;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(1, 71, 70, 0.4);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #013E43 0%, #2F703D 100%);
    color: white;
}

.contact-content {
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
}

.contact-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #CBD425;
}

/* Footer */
.footer {
    width: 100%;
}

.footer-main {
    background: #013E43;
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
    justify-items: center;
    margin-left:8%;
}

/* Sección izquierda */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 100px;
    width: auto;
}

.footer-slogan {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin: 0;
}

.footer-year {
    font-size: 1rem;
    color: white;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social-icon {
    width: 28.8px;
    height: 28.8px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-social-icon:hover {
    transform: scale(1.1);
}

/* Sección media - Columnas de enlaces */
.footer-middle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    justify-items: center;
    width: 100%;
}

.footer-middle .footer-column:first-child {
    margin-left: 50%;
}

.footer-middle .footer-column:nth-child(2) {
    margin-left: 0;
}

.footer-column-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #CBD425;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #CBD425;
}

/* Ocultar "Ruta Diesel Power" en el footer */
.footer-links a[href*="ruta-diesel"],
.footer-links li:has(a[href*="ruta-diesel"]) {
    display: none !important;
}

/* Sección derecha - Contacto */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: -50%;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-size: 0.95rem;
    margin: 0;
}

.footer-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Franja inferior verde */
.footer-bottom {
    background: #CBD425;
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: white;
    font-size: 0.95rem;
    margin-left: 3rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-right: 3rem;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 0.8;
}

.footer-rios04 {
    color: #CBD425;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
    cursor: default;
}

.footer-rios04:hover {
    color: #d2dd53;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-left: 0;
        justify-items: center;
        text-align: center;
    }

    .footer-left {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-middle {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }

    .footer-middle .footer-column:first-child {
        margin-left: 0;
    }

    .footer-column {
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-right {
        align-items: center;
        text-align: center;
        margin-left: 0;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-copyright {
        margin-left: 0;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        margin-right: 0;
    }

    .footer-rios04 {
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    /* Forzar visibilidad del botón hamburguesa en móvil */
    .mobile-menu-toggle,
    button.mobile-menu-toggle,
    #mobileMenuToggle,
    .nav-container .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Top Bar - Mostrar completo en móvil */
    .top-bar {
        padding: 0.4rem 0;
    }

    .top-bar-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 0.5rem;
        margin-left: 0;
        width: 100%;
        align-items: center;
    }

    .top-bar-item {
        font-size: 0.85rem;
    }

    .top-bar-text {
        font-size: 0.85rem;
    }

    .top-bar-right {
        margin-right: 0;
        gap: 15px;
    }

    .top-bar-indicator {
        width: 22px;
        height: 22px;
    }

    /* Navbar - Menú hamburguesa en móvil */
    .navbar {
        top: auto;
        position: relative;
        padding: 1rem 0;
        margin-top: 0;
    }

    .nav-container {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 0 1.35rem;
        position: relative;
        gap: 1rem;
    }

    /* Botón hamburguesa - Visible en móvil */
    button.mobile-menu-toggle,
    .nav-container button.mobile-menu-toggle,
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: 1px solid rgba(1, 62, 67, 0.2);
        border-radius: 4px;
        cursor: pointer;
        padding: 5px 0;
        z-index: 1002;
        position: relative;
        flex-shrink: 0;
        margin: 0;
        min-width: 30px;
        min-height: 24px;
    }

    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background: #013E43 !important;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin: 0;
    }

    /* Sin animación - las líneas se mantienen igual */
    .mobile-menu-toggle.active span:nth-child(1),
    .mobile-menu-toggle.active span:nth-child(2),
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: none;
        opacity: 1;
    }

    .logo {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .logo img {
        height: 60px;
    }

    /* Ocultar nav-links por defecto en móvil */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: #F8FBFB;
        flex-direction: column;
        padding: 60px 2rem 1rem;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-links li {
        margin-bottom: 0.2rem;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: block;
        border-bottom: 1px solid rgba(1, 62, 67, 0.1);
    }

    .nav-links a:hover {
        color: #2F703D;
        padding-left: 0.5rem;
    }

    /* Overlay cuando el menú está abierto */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    /* Ocultar botones del lado derecho en móvil */
    .nav-right-buttons {
        display: none;
    }

    /* Hero Banner Section */
    .nosotros-banner {
        margin-top: 0;
    }

    .nosotros-banner-image {
        height: 500px;
    }

    .nosotros-banner-content {
        top: 50%;
        left: 1.35rem;
        right: 1.35rem;
        max-width: calc(100% - 2.7rem);
        padding: 0;
    }

    .nosotros-banner-text {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .nosotros-banner-subtitle {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.8rem;
        line-height: 1.1;
    }

    .nosotros-banner-description {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .nosotros-banner-btn-primary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    /* Features Section */
    .features {
        padding: 0.8rem 0;
    }

    .feature-item {
        min-width: 150px;
        gap: 0.6rem;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
    }

    .feature-text {
        font-size: 1rem;
    }

    /* About Section */
    .about {
        padding: 3rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.35rem;
    }

    .about-text {
        padding-right: 0;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .about-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .stat-item {
        gap: 0.8rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-description {
        font-size: 0.9rem;
    }

    .about-cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        font-weight: 700;
    }

    /* Hero Products Section - Móvil */
    .hero-products {
        padding: 2rem 0;
        margin-top: 0;
    }

    .hero-products-recuadro {
        display: none;
    }

    .hero-products-container {
        flex-direction: column;
        padding: 0 1.35rem;
    }

    .hero-products-left {
        width: 100%;
        padding: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-products-right {
        width: 100%;
        padding: 0;
    }

    .hero-products-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-products-image {
        width: 80%;
        max-width: 300px;
        transform: none;
        animation: none;
    }

    .hero-products-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-align: center;
        max-width: 100%;
    }

    .hero-products-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        text-align: center;
        max-width: 100%;
    }

    .hero-products-cta {
        padding: 0.7rem 2rem;
        font-size: 0.95rem;
    }

    /* Producto del Mes Section - Móvil */
    .producto-mes {
        padding: 2.5rem 0;
    }

    .producto-mes-content {
        flex-direction: column;
        padding: 2rem 1.5rem;
        max-width: 95%;
        gap: 2rem;
    }

    .producto-mes-left {
        transform: none;
        width: 100%;
    }

    .producto-mes-image-wrapper {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .producto-mes-image {
        max-width: 100%;
        width: 100%;
    }

    .producto-mes-right {
        width: 100%;
        text-align: center;
    }

    .producto-mes-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .producto-mes-description {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .producto-mes-beneficio {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        justify-content: center;
    }

    .producto-mes-icon {
        width: 1.8rem;
        height: 1.8rem;
    }

    .producto-mes-countdown-title {
        font-size: 1.3rem;
    }

    .producto-mes-countdown-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .producto-mes-countdown-label {
        font-size: 0.8rem;
    }

    /* Catálogo de Productos Section - Móvil */
    .catalogo-productos {
        padding: 2.5rem 0;
    }

    .catalogo-productos-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1.35rem;
    }

    .catalogo-categorias {
        padding: 0 1.35rem;
        margin-bottom: 2rem;
        gap: 0.5rem;
    }

    .categoria-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .catalogo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.35rem;
    }

    .producto-card {
        padding: 1.2rem;
    }

    .producto-card-image {
        width: 100%;
        height: auto;
        max-height: 180px;
        object-fit: contain;
    }


    .producto-card-title {
        font-size: 1.4rem;
    }

    .producto-card-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Products Section */
    .products {
        padding: 3rem 0;
    }

    .products-lines-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
        padding: 0 1.35rem;
    }

    .products-lines-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1.35rem;
    }

    .product-line-card {
        flex-direction: column;
        min-width: auto;
        max-width: 100%;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .product-line-card-image {
        width: 150px;
        height: 220px;
        margin: 0 auto 1.5rem;
    }

    .product-line-card-content {
        align-items: center;
        text-align: center;
    }

    .product-line-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .product-line-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .product-line-cta {
        align-self: center;
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    /* Los estilos del menú hamburguesa ya están definidos arriba */

    .section-title {
        font-size: 2rem;
    }

    /* Diesel Power Section - Oculto en móviles */
    .diesel-power {
        display: none;
    }

    /* Benefits Section */
    .benefits {
        padding: 3rem 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.35rem;
        margin-top: 2rem;
    }

    .benefit-item {
        padding: 1.5rem 1rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .benefit-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .benefit-description {
        font-size: 1rem;
        line-height: 1.5;
    }

    .historia-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .historia-card-large {
        grid-row: auto;
        min-height: 400px;
    }

    .historia-card-small {
        min-height: auto;
    }

    .historia-card-medium {
        min-height: 250px;
    }

    .aliados-row {
        gap: 1.5rem;
    }

    .aliados-row-top {
        animation: scroll-right 20s linear infinite;
    }

    .aliados-row-bottom {
        animation: scroll-left 20s linear infinite;
    }

    .aliado-item {
        width: 120px;
        height: 80px;
        padding: 0.8rem;
    }

    .aliado-logo {
        max-height: 60px;
    }

    /* Logo grupo - 20% más grande en móviles también */
    .aliado-item img[alt="Grupo"] {
        max-height: 72px;
    }

    /* Logo éxito - 20% más grande en móviles también */
    .aliado-item img[alt="Éxito"] {
        max-height: 72px;
    }

    /* Logo cencosud - 20% más grande en móviles también */
    .aliado-item img[alt="Cencosud"] {
        max-height: 72px;
    }

    /* Logo combured - 20% más grande en móviles también */
    .aliado-item img[alt="Combured"] {
        max-height: 72px;
    }

    /* Logo terpel - 20% más grande en móviles también */
    .aliado-item img[alt="Terpel"] {
        max-height: 72px;
    }

    /* Logo primax - 20% más grande en móviles también */
    .aliado-item img[alt="Primax"] {
        max-height: 72px;
    }

    /* Logo autogas - 20% más grande en móviles también */
    .aliado-item img[alt="Autogas"] {
        max-height: 72px;
    }

    /* Aliados Section */
    .aliados {
        padding: 3rem 0;
    }

    .aliados-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1.35rem;
        line-height: 1.5;
    }

    /* Equipo de Ventas Section */
    .equipo-ventas {
        padding: 3rem 0;
    }

    .equipo-ventas-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1.35rem;
        line-height: 1.5;
    }

    .equipo-ventas-content {
        padding: 0 1.35rem;
    }

    .equipo-ventas-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .equipo-ventas-foto {
        width: 100px;
        height: 100px;
    }

    .equipo-ventas-nombre {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .equipo-ventas-zona {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .equipo-ventas-contactar {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .equipo-ventas-contactar svg {
        width: 16px;
        height: 16px;
    }

    .equipo-ventas-item {
        padding: 1.5rem 1rem;
    }

    /* Mapa Nacional Section */
    .mapa-nacional {
        padding: 3rem 0;
    }

    .mapa-nacional-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.35rem;
    }

    /* Ocultar puntos parpadeantes del mapa en móvil */
    .punto-verde {
        display: none;
    }

    .ciudad-info {
        display: none;
    }

    .mapa-imagen-columna {
        order: 1;
    }

    .mapa-texto-columna {
        order: 2;
        padding-left: 0;
        text-align: center;
    }

    .mapa-titulo {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .mapa-subtitulo {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .mapa-texto-apoyo {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .mapa-boton {
        align-self: center;
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    /* Publicaciones Destacadas Section */
    .publicaciones-destacadas {
        padding: 3rem 0;
    }

    .publicaciones-destacadas-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding: 0 1.35rem;
    }

    .publicaciones-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.35rem;
        margin-top: 2rem !important;
    }

    .publicacion-card {
        max-width: 100%;
    }

    .publicacion-image {
        height: 200px;
    }

    .publicacion-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .publicacion-categoria {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .publicacion-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    /* Nosotros Divider - Móvil */
    .nosotros-divider {
        width: 90%;
        height: auto;
        margin: -100px auto 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .nosotros-divider-part {
        height: auto;
        min-height: 200px;
    }

    .divider-content {
        padding: 1.5rem 1rem;
    }

    .divider-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.8rem;
    }

    .divider-icon-valores {
        margin-top: -2rem;
        margin-bottom: 0.8rem;
    }

    .divider-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .divider-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* About Section - Móvil */
    .about-section {
        padding: 3rem 0;
    }

    .about-section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.35rem;
    }

    .about-section-title {
        font-size: 2rem;
    }

    .about-section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    /* Timeline - Móvil */
    .timeline {
        flex-direction: column;
        padding: 2rem 1.35rem;
        gap: 2rem;
        min-height: auto;
    }

    .timeline-line {
        display: none;
    }

    .timeline-item {
        width: 100%;
        flex: none;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-year {
        position: static;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .timeline-text {
        position: static;
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .timeline-dot {
        position: static;
        transform: none;
        margin: 0.5rem auto;
        display: block;
    }

    .timeline-description {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 0.5rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .timeline-item.active .timeline-description {
        opacity: 1;
        visibility: visible;
    }

    .timeline-description::before {
        display: none;
    }

    .timeline-link-container {
        margin-top: 1rem;
    }

    .timeline-link {
        font-size: 1rem;
    }

    .productos-destacados {
        padding: 3rem 0;
    }

    .productos-destacados-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1.35rem;
    }

    .productos-destacados-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0 1.35rem;
    }

    .producto-destacado-card {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }

    .producto-destacado-image-container {
        min-height: 300px;
        padding: 1.5rem;
    }

    .producto-destacado-name {
        font-size: 1.2rem;
    }

    .producto-destacado-ver-beneficios {
        font-size: 0.95rem;
    }
}

/* Media Query para pantallas muy pequeñas (480px) - Index.html */
@media (max-width: 480px) {
    /* Hero Products Section - Pantallas muy pequeñas */
    .hero-products {
        padding: 1.5rem 0;
    }

    .hero-products-container {
        padding: 0 0.9rem;
    }

    .hero-products-title {
        font-size: 1.8rem;
        text-align: center;
        max-width: 100%;
    }

    .hero-products-text {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
    }

    .hero-products-image {
        max-width: 250px;
    }

    /* Producto del Mes Section - Pantallas muy pequeñas */
    .producto-mes {
        padding: 2rem 0;
    }

    .producto-mes-content {
        padding: 1.5rem 1rem;
        max-width: 98%;
    }

    .producto-mes-image-wrapper {
        max-width: 200px;
    }

    .producto-mes-title {
        font-size: 2rem;
    }

    .producto-mes-description {
        font-size: 1.1rem;
    }

    .producto-mes-beneficio {
        font-size: 0.9rem;
    }

    .producto-mes-countdown-title {
        font-size: 1.1rem;
    }

    .producto-mes-countdown-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Catálogo de Productos Section - Pantallas muy pequeñas */
    .catalogo-productos {
        padding: 2rem 0;
    }

    .catalogo-productos-title {
        font-size: 1.8rem;
        padding: 0 0.9rem;
    }

    .catalogo-categorias {
        padding: 0 0.9rem;
        flex-wrap: wrap;
    }

    .categoria-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .catalogo-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 0.9rem;
    }

    .producto-card {
        padding: 1rem;
    }

    .producto-card-title {
        font-size: 1.2rem;
    }

    .producto-card-description {
        font-size: 0.8rem;
    }

    /* Hero Banner - Pantallas muy pequeñas */
    .nosotros-banner-image {
        height: 450px;
    }

    .nosotros-banner-content {
        left: 0.9rem;
        right: 0.9rem;
        max-width: calc(100% - 1.8rem);
    }

    .nosotros-banner-text {
        font-size: 1rem;
    }

    .nosotros-banner-subtitle {
        font-size: 1.6rem;
    }

    .nosotros-banner-description {
        font-size: 0.85rem;
    }

    /* Nosotros Divider - Pantallas muy pequeñas */
    .nosotros-divider {
        width: 95%;
        margin: -80px auto 1.5rem;
        gap: 1rem;
    }

    .nosotros-divider-part {
        min-height: 180px;
    }

    .divider-content {
        padding: 1.2rem 0.8rem;
    }

    .divider-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.6rem;
    }

    .divider-icon-valores {
        margin-top: -1.5rem;
        margin-bottom: 0.6rem;
    }

    .divider-title {
        font-size: 1.6rem;
    }

    .divider-text {
        font-size: 0.85rem;
    }

    /* About Section - Pantallas muy pequeñas */
    .about-section {
        padding: 2.5rem 0;
    }

    .about-section-content {
        padding: 0 0.9rem;
    }

    .about-section-title {
        font-size: 1.8rem;
    }

    .about-section-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    /* Timeline - Pantallas muy pequeñas */
    .timeline {
        padding: 1.5rem 0.9rem;
        gap: 1.5rem;
    }

    .timeline-item {
        margin-bottom: 1.2rem;
    }

    .timeline-year {
        font-size: 1rem;
    }

    .timeline-text {
        font-size: 0.9rem;
    }

    .timeline-description {
        font-size: 0.85rem;
        padding: 0.8rem;
        opacity: 0;
        visibility: hidden;
    }

    .timeline-item.active .timeline-description {
        opacity: 1;
        visibility: visible;
    }

    .productos-destacados {
        padding: 2.5rem 0;
    }

    .productos-destacados-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding: 0 0.9rem;
    }

    .productos-destacados-grid {
        padding: 0 0.9rem;
        gap: 1.5rem;
    }

    .producto-destacado-image-container {
        min-height: 250px;
        padding: 1.2rem;
    }

    .producto-destacado-name {
        font-size: 1.1rem;
    }

    .producto-destacado-ver-beneficios {
        font-size: 0.9rem;
    }

    /* Features - Pantallas muy pequeñas */
    .feature-item {
        min-width: 130px;
        gap: 0.5rem;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    /* About Section - Pantallas muy pequeñas */
    .about {
        padding: 2.5rem 0;
    }

    .about-content {
        padding: 0 0.9rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

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

    /* Products - Pantallas muy pequeñas */
    .products {
        padding: 2.5rem 0;
    }

    .products-lines-title {
        font-size: 1.6rem;
        padding: 0 0.9rem;
    }

    .products-lines-container {
        padding: 0 0.9rem;
    }

    .product-line-card {
        padding: 1.5rem 1rem;
    }

    .product-line-card-image {
        width: 130px;
        height: 190px;
    }

    .product-line-title {
        font-size: 1.4rem;
    }

    .product-line-description {
        font-size: 0.95rem;
    }

    /* Benefits - Pantallas muy pequeñas */
    .benefits {
        padding: 2.5rem 0;
    }

    .benefits-grid {
        padding: 0 0.9rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-title {
        font-size: 1.2rem;
    }

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

    /* Diesel Power - Ya oculto en 768px, no necesita ajustes adicionales */

    /* Publicaciones - Pantallas muy pequeñas */
    .publicaciones-destacadas {
        padding: 2.5rem 0;
    }

    .publicaciones-destacadas-title {
        font-size: 1.6rem;
        padding: 0 0.9rem;
    }

    .publicaciones-grid {
        padding: 0 0.9rem;
    }

    .publicacion-image {
        height: 180px;
    }

    .publicacion-title {
        font-size: 1.1rem;
    }

    /* Aliados - Pantallas muy pequeñas */
    .aliados {
        padding: 2.5rem 0;
    }

    .aliados-subtitle {
        font-size: 0.95rem;
        padding: 0 0.9rem;
    }

    .aliado-item {
        width: 100px;
        height: 70px;
        padding: 0.6rem;
    }

    .aliado-logo {
        max-height: 50px;
    }

    /* Equipo de Ventas - Pantallas muy pequeñas */
    .equipo-ventas {
        padding: 2.5rem 0;
    }

    .equipo-ventas-subtitle {
        font-size: 0.95rem;
        padding: 0 0.9rem;
    }

    .equipo-ventas-content {
        padding: 0 0.9rem;
    }

    .equipo-ventas-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .equipo-ventas-foto {
        width: 100px;
        height: 100px;
    }

    .equipo-ventas-nombre {
        font-size: 0.95rem;
    }

    .equipo-ventas-zona {
        font-size: 0.85rem;
    }

    /* Mapa Nacional - Pantallas muy pequeñas */
    .mapa-nacional {
        padding: 2.5rem 0;
    }

    .mapa-nacional-content {
        padding: 0 0.9rem;
    }

    /* Los puntos ya están ocultos en 768px, no necesitan ajuste adicional */

    .mapa-titulo {
        font-size: 1.6rem;
    }

    .mapa-subtitulo {
        font-size: 0.95rem;
    }

    .mapa-texto-apoyo {
        font-size: 0.9rem;
    }

    .mapa-boton {
        max-width: 100%;
        padding: 10px 20px;
    }
}

/* Popup Modal de Producto */
.producto-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.producto-modal.active {
    opacity: 1;
    visibility: visible;
}

.producto-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.producto-modal-content {
    position: relative;
    background: white;
    border-radius: 30px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.producto-modal.active .producto-modal-content {
    transform: scale(1);
}

.producto-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #013E43;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: all 0.3s ease;
    line-height: 1;
}

.producto-modal-close:hover {
    background: #CBD425;
    transform: rotate(90deg);
}

.producto-modal-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    padding: 2.5rem;
}

.producto-modal-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
}

.producto-modal-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.producto-modal-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.producto-modal-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #013E43;
    margin: 0;
    line-height: 1.2;
}

.producto-modal-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.producto-modal-section {
    margin-top: 0.5rem;
}

.producto-modal-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #013E43;
    margin-bottom: 1rem;
}

.producto-modal-beneficios {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.producto-modal-beneficios li {
    font-size: 1rem;
    color: #333;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.producto-modal-beneficios li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #CBD425;
    font-weight: 700;
    font-size: 1.2rem;
}

.producto-modal-modo-uso {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #CBD425;
}

.producto-modal-precauciones {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.producto-modal-precauciones li {
    font-size: 1rem;
    color: #333;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.producto-modal-precauciones li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.2rem;
}

.producto-modal-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #CBD425;
    color: white;
    padding: 1rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.producto-modal-cta:hover {
    background: #013E43;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 62, 67, 0.3);
}

.producto-modal-cta i {
    font-size: 1.2rem;
}

.producto-modal-mensaje {
    background: #F8FBFB;
    border: 2px solid #CBD425;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    margin-top: 1rem;
    color: #013E43;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
}

/* Modal de Video */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    background: white;
    border-radius: 30px;
    max-width: 900px;
    width: 90%;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #013E43;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: all 0.3s ease;
    line-height: 1;
}

.video-modal-close:hover {
    background: #CBD425;
    transform: rotate(90deg);
}

.video-modal-body {
    padding: 2.5rem;
}

.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Modal de Video */
@media (max-width: 768px) {
    .video-modal-body {
        padding: 1.5rem;
    }

    .video-container {
        aspect-ratio: 16 / 9;
        min-height: 250px;
    }
}

/* Responsive Popup Modal */
@media (max-width: 768px) {
    .producto-modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .producto-modal-image-container {
        padding: 1.5rem;
    }

    .producto-modal-image {
        max-width: 200px;
    }

    .producto-card-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .producto-card-btn,
    .producto-card-btn-video {
        width: 100%;
        max-width: 100%;
    }

    .producto-modal-title {
        font-size: 1.8rem;
    }

    .producto-modal-description {
        font-size: 1rem;
    }

    .producto-modal-section-title {
        font-size: 1.1rem;
    }

    .producto-modal-cta {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* Sección de Contacto - Donde Comprar */
.contacto-section {
    padding: 5rem 0;
    background: #F8FBFB;
}

.contacto-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contacto-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contacto-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contacto-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #CBD425;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacto-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.contacto-icon-fa {
    font-size: 2.5rem;
    color: white;
}

.contacto-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #013E43;
    margin-bottom: 1rem;
}

.contacto-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contacto-link {
    display: inline-block;
    background: #013E43;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contacto-link:hover {
    background: #CBD425;
    color: #013E43;
    transform: translateY(-2px);
}

/* Botones del mapa mejorados */
.mapa-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.mapa-boton-whatsapp {
    background: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.mapa-boton-whatsapp:hover {
    background: #128C7E;
}

.mapa-boton-llamar {
    background: #013E43;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.mapa-boton-llamar:hover {
    background: #014746;
}

.mapa-boton i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contacto-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mapa-buttons {
        flex-direction: column;
    }
    
    .mapa-boton {
        width: 100%;
        justify-content: center;
    }
}

/* Chatbot Flotante */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #CBD425;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(203, 212, 37, 0.4);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.chatbot-toggle:hover {
    background: #2F703D;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(203, 212, 37, 0.5);
}

.chatbot-toggle.active {
    background: #013E43;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.chatbot-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: #013E43;
    color: white;
    padding: 1.2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #CBD425;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chatbot-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.chatbot-status {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

.chatbot-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #f8f9fa;
}

.chatbot-message {
    display: flex;
    max-width: 85%;
}

.chatbot-message.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chatbot-message.bot-message {
    align-self: flex-start;
}

.message-content {
    background: white;
    padding: 0.9rem 1.2rem;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.user-message .message-content {
    background: #CBD425;
    color: white;
}

.bot-message .message-content {
    background: white;
    color: #333;
}

.message-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: pre-line;
}

.chatbot-options {
    margin: 0.5rem 0 0 0;
    padding-left: 1.2rem;
    list-style: none;
}

.chatbot-options li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chatbot-input-container {
    display: flex;
    padding: 1rem;
    background: white;
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 20px 20px;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

.chatbot-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
    min-width: 0;
    box-sizing: border-box;
}

.chatbot-input:focus {
    border-color: #CBD425;
}

.chatbot-send {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #CBD425;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.chatbot-send:hover {
    background: #2F703D;
    transform: scale(1.05);
}

.chatbot-whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    padding: 0.4rem 1.2rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(37, 211, 102, 0.3);
}

.chatbot-buttons-container .chatbot-whatsapp-button {
    margin-top: 0;
    width: 100%;
    justify-content: center;
}

.chatbot-whatsapp-button:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
}

.chatbot-whatsapp-button i {
    font-size: 1.1rem;
}

.chatbot-pse-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    padding: 0.4rem 1.2rem;
    background: #2F703D;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(47, 112, 61, 0.3);
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.chatbot-pse-button:hover {
    background: #255A2F;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(47, 112, 61, 0.4);
}

.chatbot-pse-button i {
    font-size: 1.1rem;
}

.chatbot-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.chatbot-gmail-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    background: #EA4335;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(234, 67, 53, 0.3);
    cursor: pointer;
    width: 100%;
    justify-content: center;
    font-family: inherit;
}

.chatbot-gmail-button:hover {
    background: #D33B2C;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(234, 67, 53, 0.4);
}

.chatbot-gmail-button i {
    font-size: 1.1rem;
}

/* Responsive Chatbot */
@media (max-width: 768px) {
    .chatbot-container {
        bottom: 15px;
        right: 15px;
        left: auto;
    }

    .chatbot-window {
        width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
        height: calc(100vh - 120px);
        max-height: 600px;
        bottom: 80px;
        right: 15px;
        left: 15px;
        position: fixed;
    }

    .chatbot-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .chatbot-input-container {
        padding: 0.8rem;
        gap: 0.4rem;
        width: 100%;
        box-sizing: border-box;
    }

    .chatbot-input {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

    .chatbot-send {
        width: 40px;
        height: 40px;
        min-width: 40px;
        flex-shrink: 0;
        font-size: 1rem;
    }

    .chatbot-messages {
        padding: 1rem;
        box-sizing: border-box;
    }
}

/* ============================================
   PÁGINA DE EDUCACIÓN
   ============================================ */

/* Filtros de Categorías */
.educacion-filtros {
    padding: 3rem 0;
    background: #F8FBFB;
    border-bottom: 1px solid #e0e0e0;
}

.educacion-filtros-content {
    text-align: center;
}

.educacion-filtros-title {
    font-size: 2rem;
    font-weight: 700;
    color: #013E43;
    margin-bottom: 2rem;
}

.educacion-filtros-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.educacion-filtro-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: #013E43;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.educacion-filtro-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #CBD425;
    transition: width 0.3s ease;
}

.educacion-filtro-btn:hover::after,
.educacion-filtro-btn.active::after {
    width: 100%;
}

.educacion-filtro-btn:hover {
    background: transparent;
    color: #013E43;
    transform: none;
    box-shadow: none;
}

.educacion-filtro-btn.active {
    background: transparent;
    color: #013E43;
    border: none;
}

/* Artículos de Educación */
.articulos-educacion {
    padding: 4rem 0;
    background: #F8FBFB;
}

.articulos-educacion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.articulo-educacion-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: block;
    opacity: 1;
    transform: translateY(0);
    border: none;
}

.articulo-educacion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.articulo-educacion-image {
    width: 100%;
    height: 220px;
    background: #e0e0e0;
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.articulo-educacion-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.articulo-educacion-card:hover .articulo-educacion-image img {
    transform: scale(1.1);
}

.articulo-educacion-content {
    padding: 1.125rem 1.5rem;
}

.articulo-educacion-categoria {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: #CBD425;
    color: #013E43;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.articulo-educacion-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #013E43;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    min-height: 3.5rem;
}

.articulo-educacion-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    min-height: 4.5rem;
}

.articulo-educacion-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    color: #888;
}

.articulo-educacion-meta i {
    margin-right: 0.4rem;
    color: #CBD425;
}

.articulo-educacion-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #CBD425;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    border: none;
}

.articulo-educacion-btn:hover {
    background: #b8c020;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(203, 212, 37, 0.3);
}

/* Botón Cargar Más */
.articulos-educacion-load-more {
    text-align: center;
    margin-top: 3rem;
}

.articulos-educacion-load-btn {
    padding: 1rem 2.5rem;
    background: #CBD425;
    color: #013E43;
    border: 2px solid #CBD425;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.articulos-educacion-load-btn:hover {
    background: #013E43;
    color: white;
    border-color: #013E43;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 62, 67, 0.3);
}

/* Responsive - Artículos de Educación */
@media (max-width: 1024px) {
    .articulos-educacion-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .educacion-filtros {
        padding: 2rem 0;
    }

    .educacion-filtros-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .educacion-filtros-buttons {
        gap: 0.75rem;
    }

    .educacion-filtro-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .articulos-educacion {
        padding: 3rem 0;
    }

    .articulos-educacion-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .articulo-educacion-title {
        font-size: 1.15rem;
        min-height: auto;
    }

    .articulo-educacion-excerpt {
        min-height: auto;
    }

    .articulo-educacion-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .educacion-filtros-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .educacion-filtros-buttons::-webkit-scrollbar {
        height: 4px;
    }

    .educacion-filtros-buttons::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .educacion-filtros-buttons::-webkit-scrollbar-thumb {
        background: #CBD425;
        border-radius: 2px;
    }

    .educacion-filtro-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .articulo-educacion-content {
        padding: 1.25rem;
    }

    .articulo-educacion-title {
        font-size: 1.05rem;
    }

    .articulo-educacion-excerpt {
        font-size: 0.9rem;
    }
}

/* ============================================
   PÁGINA DE DETALLE DE ARTÍCULO
   ============================================ */

/* Breadcrumb */
.articulo-breadcrumb {
    padding: 1.5rem 0;
    background: #F8FBFB;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #013E43;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #CBD425;
}

.breadcrumb-separator {
    color: #888;
}

.breadcrumb-current {
    color: #888;
}

/* Artículo Detalle */
.articulo-detalle {
    padding: 6rem 0 4rem;
    background: #F8FBFB;
}

.articulo-detalle .container {
    max-width: 99%;
    padding: 0 2rem;
    width: 100%;
    margin: 0 auto;
}

.articulo-detalle-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.articulo-detalle-main {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Header del Artículo */
.articulo-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #013E43;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.articulo-back-btn:hover {
    color: #CBD425;
    transform: translateX(-5px);
}

.articulo-back-btn i {
    font-size: 0.9rem;
}

.articulo-detalle-header {
    margin-bottom: 2rem;
}

.articulo-detalle-categoria {
    margin-bottom: 1rem;
}

.articulo-categoria-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #CBD425;
    color: #013E43;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.articulo-detalle-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #013E43;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.articulo-detalle-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.articulo-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.articulo-meta-item i {
    color: #CBD425;
    font-size: 0.85rem;
}

/* Imagen Destacada */
.articulo-detalle-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #CBD425 0%, #013E43 100%);
}

.articulo-detalle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 100%;
}

/* Estilos específicos para artículo 1 */
.articulo-detalle-image img[src*="aditivoencarro.png"] {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: block;
}

/* Estilos específicos para artículo 2 */
.articulo-detalle-image img[src*="antesydespues.jpg"] {
    width: 240%;
    height: 240%;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
    display: block;
    transform: translateX(-30%) translateY(-20%);
}

/* Estilos específicos para artículo 3 */
.articulo-detalle-image img[src*="ahorrocombustible.jpg"] {
    width: 230%;
    height: 230%;
    object-fit: contain;
    object-position: center center;
    transform: translateX(-28%) translateY(-20%);
}

/* Estilos específicos para artículo 8 */
.articulo-detalle-image img[src*="precios.png"] {
    width: 200%;
    height: 200%;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
    display: block;
    transform: translateX(-25%) translateY(-20%);
}

/* Estilos específicos para artículo 7 */
.articulo-detalle-image img[src*="humocarro.jpg"] {
    width: 190%;
    height: 190%;
    object-fit: contain;
    object-position: center center;
    transform: translateX(-25%) translateY(-10%);
}

/* Estilos específicos para artículo 9 */
.articulo-detalle-image img[src*="ganadorarticulo.jpeg"] {
    width: 450%;
    height: 450%;
    object-fit: contain;
    object-position: center center;
    transform: translateX(-39%) translateY(-40%);
}

/* Estilos específicos para artículo 10 */
.articulo-detalle-image img[src*="cuidadomotor.jpg"] {
    width: 250%;
    height: 250%;
    object-fit: contain;
    object-position: center center;
    transform: translateX(-28%) translateY(-20%);
}

/* Estilos específicos para artículo 11 */
.articulo-detalle-image img[src*="biodiesel.jpg"] {
    width: 250%;
    height: 250%;
    object-fit: contain;
    object-position: center center;
    transform: translateX(-30%) translateY(-0%);
}

/* Contenido del Artículo */
.articulo-detalle-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.articulo-intro {
    background: #F8FBFB;
    padding: 1.5rem;
    border-left: 4px solid #CBD425;
    border-radius: 6px;
    margin-bottom: 2.5rem;
}

.articulo-intro-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: #013E43;
    margin: 0;
    line-height: 1.7;
}

.articulo-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #013E43;
    margin: 2.5rem 0 1.5rem;
    line-height: 1.3;
}

.articulo-detalle-body p {
    margin-bottom: 1.5rem;
    color: #444;
}

.articulo-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.articulo-list li {
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.7;
}

.articulo-list li strong {
    color: #013E43;
}

/* Highlight Box */
.articulo-highlight-box {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #CBD425 0%, #013E43 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    color: white;
}

.articulo-highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.articulo-highlight-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.articulo-highlight-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* Products Grid */
.articulo-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.articulo-product-item {
    background: #F8FBFB;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.articulo-product-item:hover {
    border-color: #CBD425;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(203, 212, 37, 0.2);
}

.articulo-product-item h4 {
    font-size: 1.1rem;
    color: #013E43;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.articulo-product-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* CTA del Artículo */
.articulo-cta {
    background: linear-gradient(135deg, #013E43 0%, #025a63 100%);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
    color: white;
}

.articulo-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.articulo-cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.articulo-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.articulo-cta-btn-primary,
.articulo-cta-btn-secondary {
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.articulo-cta-btn-primary {
    background: #CBD425;
    color: #013E43;
}

.articulo-cta-btn-primary:hover {
    background: #b8c020;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(203, 212, 37, 0.4);
}

.articulo-cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.articulo-cta-btn-secondary:hover {
    background: white;
    color: #013E43;
}

/* Compartir Artículo */
.articulo-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.articulo-share-label {
    font-weight: 600;
    color: #013E43;
}

.articulo-share-buttons {
    display: flex;
    gap: 0.75rem;
}

.articulo-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F8FBFB;
    color: #013E43;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.articulo-share-btn:hover {
    background: #CBD425;
    border-color: #CBD425;
    color: #013E43;
    transform: translateY(-3px);
}

/* Sidebar */
.articulo-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.articulo-sidebar-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.articulo-sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #013E43;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #CBD425;
}

.articulo-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.articulo-sidebar-item {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.articulo-sidebar-item:hover {
    transform: translateX(5px);
}

.articulo-sidebar-item-image {
    width: 100px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #CBD425 0%, #013E43 100%);
}

.articulo-sidebar-item-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.articulo-sidebar-item-content {
    flex: 1;
}

.articulo-sidebar-item-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #013E43;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.articulo-sidebar-item-date {
    font-size: 0.8rem;
    color: #888;
}

/* CTA Sidebar */
.articulo-sidebar-cta {
    background: linear-gradient(135deg, #CBD425 0%, #b8c020 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: #013E43;
}

.articulo-sidebar-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #013E43;
}

.articulo-sidebar-cta p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #013E43;
    line-height: 1.6;
}

.articulo-sidebar-cta-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #013E43;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.articulo-sidebar-cta-btn:hover {
    background: #025a63;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 62, 67, 0.3);
}

/* Artículos Relacionados */
.articulos-relacionados {
    padding: 4rem 0;
    background: white;
}

.articulos-relacionados .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
}

.articulos-relacionados-title {
    font-size: 2rem;
    font-weight: 700;
    color: #013E43;
    text-align: center;
    margin-bottom: 3rem;
}

.articulos-relacionados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 100%;
    width: 100%;
    justify-items: center;
}

/* Responsive - Artículos Relacionados */
@media (max-width: 768px) {
    .articulos-relacionados-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - Artículo Detalle */
@media (max-width: 1024px) {
    .articulo-detalle-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .articulo-sidebar {
        order: -1;
    }

    .articulo-products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .articulo-detalle {
        padding: 2rem 0 3rem;
    }

    .articulo-detalle-main {
        padding: 2rem 1.5rem;
    }

    .articulo-detalle-title {
        font-size: 1.8rem;
    }

    .articulo-subtitle {
        font-size: 1.5rem;
    }

    .articulo-detalle-image {
        height: 250px;
    }

    .articulo-detalle-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .articulo-highlight-box {
        flex-direction: column;
        text-align: center;
    }

    .articulo-cta {
        padding: 2rem 1.5rem;
    }

    .articulo-cta-buttons {
        flex-direction: column;
    }

    .articulo-cta-btn-primary,
    .articulo-cta-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .articulo-share {
        flex-direction: column;
        align-items: flex-start;
    }

    .articulo-sidebar-section {
        padding: 1.5rem;
    }

    .articulos-relacionados {
        padding: 3rem 0;
    }

    .articulos-relacionados .container {
        padding: 0 1.5rem;
    }

    .articulos-relacionados-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .articulos-relacionados-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .equipo-ventas-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .equipo-ventas-foto {
        width: 100px;
        height: 100px;
    }

    .equipo-ventas-nombre {
        font-size: 0.95rem;
    }

    .equipo-ventas-zona {
        font-size: 0.85rem;
    }

    .articulo-detalle-main {
        padding: 1.5rem 1rem;
    }

    .articulo-detalle-title {
        font-size: 1.5rem;
    }

    .articulo-subtitle {
        font-size: 1.3rem;
    }

    .articulo-intro-text {
        font-size: 1rem;
    }

    .articulo-detalle-body {
        font-size: 1rem;
    }

    .articulo-sidebar-item {
        flex-direction: column;
    }

    .articulo-sidebar-item-image {
        width: 100%;
        height: 150px;
    }
}

/* Términos y Condiciones Section */
.terminos-condiciones-section {
    padding: 4rem 0 6rem;
    background: #F8FBFB;
}

.terminos-condiciones-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.terminos-condiciones-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #013E43;
    margin-bottom: 2.5rem;
    text-align: center;
}

.terminos-condiciones-item {
    margin-bottom: 2.5rem;
}

.terminos-condiciones-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #013E43;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #CBD425;
}

.terminos-condiciones-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.terminos-condiciones-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.terminos-condiciones-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.terminos-condiciones-list li::before {
    content: "•";
    color: #CBD425;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.terminos-condiciones-item strong {
    color: #013E43;
    font-weight: 600;
}

@media (max-width: 768px) {
    .terminos-condiciones-content {
        padding: 2rem 1.5rem;
    }

    .terminos-condiciones-title {
        font-size: 2rem;
    }

    .terminos-condiciones-subtitle {
        font-size: 1.3rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #013E43;
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: white;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.cookie-banner-btn-accept {
    background: #CBD425;
    color: #013E43;
}

.cookie-banner-btn-accept:hover {
    background: #2F703D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(203, 212, 37, 0.3);
}

.cookie-banner-btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-banner-btn-reject:hover {
    background: white;
    color: #013E43;
    transform: translateY(-2px);
}

.cookie-banner-btn-config {
    background: transparent;
    color: #CBD425;
    border: 2px solid #CBD425;
}

.cookie-banner-btn-config:hover {
    background: #CBD425;
    color: #013E43;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.5rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-banner-btn {
        width: 100%;
    }
}

/* Cookie Configuration Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 2rem;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid #F0F0F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #013E43;
    margin: 0;
}

.cookie-modal-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: #F0F0F0;
    color: #013E43;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #F0F0F0;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.cookie-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #013E43;
    margin: 0;
}

.cookie-category-status {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.cookie-category-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cookie-category-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #CBD425;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: #2F703D;
    cursor: not-allowed;
    opacity: 0.7;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 2px solid #F0F0F0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-modal-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.cookie-modal-btn-save {
    background: #CBD425;
    color: #013E43;
}

.cookie-modal-btn-save:hover {
    background: #2F703D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(203, 212, 37, 0.3);
}

@media (max-width: 768px) {
    .cookie-modal {
        padding: 1rem;
    }

    .cookie-modal-content {
        max-height: 95vh;
    }

    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }

    .cookie-modal-title {
        font-size: 1.5rem;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-btn {
        width: 100%;
    }
}

