/* Banner COFEPRIS - Estilos adicionales para LQ Química */

.cofepris-banner {
    background: linear-gradient(135deg, #00a859 0%, #00d46a 100%);
    padding: 25px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,168,89,0.3);
    z-index: 100;
}

.cofepris-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.cofepris-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.cofepris-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    border: 3px solid rgba(255,255,255,0.3);
    animation: rotate-icon 3s ease-in-out infinite;
}

@keyframes rotate-icon {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(15deg);
    }
}

.cofepris-text {
    flex: 1;
    color: white;
}

.cofepris-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cofepris-badge {
    background: rgba(255,255,255,0.25);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cofepris-text p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 8px;
}

.cofepris-cta {
    flex-shrink: 0;
}

.cofepris-cta .btn {
    background: white;
    color: #00a859;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: none;
}

.cofepris-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f0f0f0;
}

/* Sección de Mapa */
.footer-map-section {
    background: #F5F5F5;
    padding: 60px 0;
    border-top: 1px solid #E0E0E0;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.map-info {
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-info h3 {
    font-size: 28px;
    color: #3D3D3D;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-info h3 i {
    color: #6B46A8;
    font-size: 32px;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #F5F5F5;
    border-radius: 10px;
    transition: all 0.3s;
}

.map-info-item:hover {
    transform: translateX(5px);
    background: #e8e8e8;
}

.map-info-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6B46A8, #E91E8C);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.map-info-text h4 {
    font-size: 16px;
    color: #3D3D3D;
    font-weight: 700;
    margin-bottom: 5px;
}

.map-info-text p {
    font-size: 14px;
    color: #6B6B6B;
    line-height: 1.6;
}

.map-frame {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    height: 450px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #6B46A8, #E91E8C);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
    transition: all 0.3s;
}

.map-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107,70,168,0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .cofepris-content {
        flex-direction: column;
        text-align: center;
    }

    .cofepris-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .cofepris-text h3 {
        font-size: 18px;
        justify-content: center;
    }

    .cofepris-text p {
        font-size: 14px;
    }

    .map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-frame {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .cofepris-banner {
        padding: 20px 0;
    }
    
    .map-info {
        padding: 25px;
    }
}