/* Ruta: /assets/css/contacto.css */
body, p, span, .contact-link, .form-control, .form-check-label, .btn {
    font-family: 'Work Sans', sans-serif !important;
}

h1, h2, h3, h4, h5 {
    font-family: 'Kallisto', sans-serif !important;
}

.contacto-hero {
    height: 80vh;
    min-height: 400px;
}

.contact-main-card {
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

.contact-link {
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #666666 !important; 
}

.fade-in {
    animation: fadeIn ease 1.5s;
    -webkit-animation: fadeIn ease 1.5s;
    -moz-animation: fadeIn ease 1.5s;
    -o-animation: fadeIn ease 1.5s;
    -ms-animation: fadeIn ease 1.5s;
}

@keyframes fadeIn {
    0% { opacity:0; transform: translateY(20px); }
    100% { opacity:1; transform: translateY(0); }
}

.form-control:focus {
    box-shadow: none;
    background-color: #fff !important;
    border: 1px solid #000 !important;
}

@media (max-width: 768px) {
    .contacto-hero {
        height: 60vh;
    }
    
    .display-4 {
        font-size: 2.5rem !important;
    }
}