/* Cabecera degradada */
.header-section {
    background: linear-gradient(90deg, #007bff, #00c4cc);
    width: 100%;
    padding: 60px 0;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.h1-contacto {
    font-family: 'SugarPieW00-Regular', sans-serif;
    -webkit-text-stroke: 1px #e0e0e0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-content h3 {
    font-weight: 500;
}

.header-content .lead {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Sección del formulario */
.contact-section {
    background-color: #fff;
    padding: 60px 0;
}

.contact-section .form-label {
    font-weight: 500;
    color: #333;
}

.contact-section .form-control {
    border-radius: 5px;
    border-color: #ddd;
}

.contact-section .form-check-label a {
    color: #007bff;
    text-decoration: none;
}

.contact-section .form-check-label a:hover {
    text-decoration: underline;
}

.contact-section .btn-primary {
    background-color: #4A90E2;
    border-color: #4A90E2;
    padding: 10px 30px;
    transition: background-color 0.3s ease;
}

.contact-section .btn-primary:hover {
    background-color: #3DA65E;
    border-color: #3DA65E;
}

/* Modal */
#messageModal .modal-content {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#messageModal .modal-header {
    background: linear-gradient(90deg, #007bff, #00c4cc);
    color: #fff;
}

#messageModal .modal-body {
    font-size: 1.1rem;
    color: #333;
}

#messageModal .btn-primary {
    background-color: #4A90E2;
    border-color: #4A90E2;
}

#messageModal .btn-primary:hover {
    background-color: #3DA65E;
    border-color: #3DA65E;
}

/* Sección de información adicional */
.info-section {
    background-color: #f5f6f5;
    padding: 60px 0;
}

.info-section h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.info-section p {
    font-size: 1rem;
    color: #666;
}

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

.social-links a:hover {
    color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
    .header-section {
        padding: 40px 0;
    }
    .h1-contacto {
        font-size: 2rem;
    }
    .contact-section {
        padding: 40px 0;
    }
    .info-section .col-md-4 {
        margin-bottom: 20px;
    }
    .social-links .display-5 {
        font-size: 2rem;
    }
    #messageModal .modal-dialog {
        margin: 1rem;
    }
}