/* --- Hero Section for Contacto --- */
.hero-contacto {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), var(--bg-hero-contacto);
    background-size: cover;
    background-position: top;
    color: #f4f4f4;
    text-align: center;
    padding: 340px 0 350px;
}

.hero-contacto h1 {
    color: #f4f4f4;
    font-size: 3.5rem;
    line-height: 4.5rem;
    margin-bottom: 10px;
}

.hero-contacto p {
    font-size: 20px;
    font-weight: 500;
}

/* --- Contacto Section --- */
.contacto-section {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.contacto-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.contacto-form h3, .contacto-info h3 {
    font-family: 'Chunkfive', serif;
    font-size: 28px;
    color: #0a3148;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}

.contacto-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contacto-info strong {
    font-weight: 700;
}

/* Alert Messages */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 16px;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .hero-contacto {
        padding: 350px 20px 350px;
    }

    .contacto-wrapper {
        grid-template-columns: 1fr;
    }
}
