/* DISEÑO NATIVO: contacto.css */
:root {
    --primary: #5B1425;
    --secondary: #E5E9EC;
    --accent: #556B2F;
    --text-dark: #1A1A1A;
}

body { font-family: 'Segoe UI', Tahoma, sans-serif; line-height: 1.8; color: var(--text-dark); background: #FFFFFF; }

.ads-compliance-banner { background: #FFD700; padding: 15px; text-align: center; border-bottom: 3px solid var(--primary); }
.main-header { padding: 30px 5%; border-bottom: 1px solid var(--secondary); }
.corporate-brand { font-size: 2rem; font-weight: 800; color: var(--primary); text-decoration: none; }

.contact-main-content { max-width: 800px; margin: 40px auto; padding: 0 20px; }
.form-group { margin-bottom: 25px; }
label { display: block; font-weight: 600; margin-bottom: 8px; }
input, select, textarea { width: 100%; padding: 15px; border: 2px solid var(--secondary); border-radius: 4px; font-size: 1rem; }
.submit-button { width: 100%; padding: 20px; background: var(--accent); color: white; border: none; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: background 0.3s; }
.submit-button:hover { background: var(--primary); }

.feedback-message { margin-top: 20px; padding: 15px; border-radius: 4px; font-weight: bold; }