/* CONTACTO SECTION */
.contacto-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
}

.contacto-section .section-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contacto-section .section-title::after {
    background: #e74c3c;
    left: 50%;
    transform: translateX(-50%);
}

.contacto-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    font-weight: 300;
}

/* CONTENEDOR PRINCIPAL - CORREGIDO */
.contacto-section .row.align-items-center {
    align-items: stretch !important;
}

.col-lg-5.mb-4,
.col-lg-7 {
    display: flex;
    flex-direction: column;
}

/* Información de contacto */
.contacto-info {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contacto-link {
    transition: all 0.3s ease;
}

.contacto-link:hover {
    transform: translateY(-2px);
}

.contacto-tel {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contacto-link:hover .contacto-tel {
    color: #e74c3c;
}

.contacto-horario {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Botones */
.contacto-section .btn {
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contacto-section .btn-primary {
    /*background: linear-gradient(45deg, #e74c3c, #c0392b);*/
    background: linear-gradient(45deg, #3ca3e7, #2b84c0);
}

.contacto-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(60, 148, 231, 0.4);
    background: linear-gradient(45deg, #2b7dc0, #3c8ce7);
    /*background: linear-gradient(45deg, #c0392b, #e74c3c);*/
}

.contacto-section .btn-success {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.contacto-section .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(45deg, #128C7E, #25D366);
}

/* Dirección */
.contacto-direccion {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

.contacto-extra {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Mapa - CORREGIDO */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-height: 350px;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(231, 76, 60, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

/* BOTÓN FLOTANTE WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-icon {
    font-size: 1.8rem;
    margin-right: 10px;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .contacto-section {
        padding: 60px 0;
    }
    
    .contacto-section .section-title {
        font-size: 2.2rem;
    }
    
    .contacto-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .contacto-tel {
        font-size: 2rem;
    }
    
    .contacto-info {
        padding: 1.5rem;
        text-align: center;
        margin-bottom: 2rem;
        height: auto;
    }
    
    .map-container {
        height: 300px;
        min-height: 300px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        padding: 12px 16px;
    }
    
    .whatsapp-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .contacto-section .section-title {
        font-size: 1.8rem;
    }
    
    .contacto-tel {
        font-size: 1.8rem;
    }
    
    .map-container {
        height: 250px;
        min-height: 250px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-link {
        padding: 10px 15px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-icon {
        margin-right: 0;
        font-size: 1.5rem;
    }
}