/**
 * ESTILOS ESPECÍFICOS PARA LA PÁGINA "CONTACTO"
 * CPES N.º 38 "Juana Azurduy"
 */

/* SECCIONES GENERALES */
.main-padding {
    padding: 60px 0;
}

.mapa-section {
    margin-top: 60px;
}

/* GRID DE CONTACTO */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.contact-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--verde-turismo);
}

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

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    color: var(--azul-oscuro);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

/* INFORMACIÓN DE CONTACTO */
.contact-info {
    line-height: 2;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-info strong {
    min-width: 100px;
    color: var(--azul-oscuro);
}

.horario-detalle {
    padding-left: 20px;
}

.email-link {
    word-break: break-all;
}

.email-link a {
    color: var(--azul-claro);
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-link a:hover {
    color: var(--verde-turismo);
    text-decoration: underline;
}

.nota-horario {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}

/* MAPA */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 3px solid white;
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.mapa-nota {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* REDES SOCIALES */
.contact-social {
    background: linear-gradient(135deg, var(--azul-oscuro), var(--azul-claro));
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.contact-social h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-social > p {
    opacity: 0.9;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-icons a {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--verde-turismo);
}

/* FOOTER */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--verde-turismo);
    padding-left: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .contact-social {
        padding: 30px 20px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}