/* PALETA INDEPENDIENTE - TERRACOTA DE ACCIÓN Y FONDO DE ENFOQUE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --primary: #E64A19;
    --secondary: #2C3E50;
    --text: #34495E;
    --bg: #ECF0F1;
    --error: #C0392B;
}
body { font-family: system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-small { max-width: 600px; margin: 0 auto; padding: 0 20px; }
.main-header { background: #fff; border-bottom: 2px solid var(--secondary); padding: 15px 20px; }
.header-container { display: table; width: 100%; }
.logo-container { display: table-cell; text-decoration: none; font-size: 22px; color: var(--secondary); }
.logo-bold { font-weight: 800; color: var(--primary); }
.main-nav { display: table-cell; text-align: center; }
.nav-link { color: var(--text); text-decoration: none; margin: 0 15px; font-weight: 600; }
.nav-link.active { color: var(--primary); }
.header-cta { display: table-cell; text-align: right; }
.btn { display: inline-block; padding: 12px 20px; font-weight: 700; text-decoration: none; border-radius: 4px; border: none; cursor: pointer; }
.btn-primary { background: var(--primary); color: white; }
.btn-secondary { background: var(--secondary); color: white; }
.btn-block { display: block; width: 100%; }
.top-disclaimer-box { background: #FADBD8; border-bottom: 1px solid #F5B7B1; padding: 10px 20px; font-size: 12px; text-align: center; color: #78281F; }
.contact-section { padding: 50px 0; }
.form-wrapper { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.form-header { text-align: center; margin-bottom: 30px; }
.form-header h1 { font-size: 26px; color: var(--secondary); margin-bottom: 10px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 2px solid #BDC3C7; border-radius: 4px; font-size: 15px; }
.error-message { color: var(--error); font-size: 12px; display: none; margin-top: 5px; font-weight: 600; }
.form-success-box { display: none; background: #D4EFDF; border: 1px solid #A9DFBF; padding: 30px; border-radius: 4px; text-align: center; color: #196F3D; }
.main-footer { background: #1A252F; color: #BDC3C7; padding: 50px 0 20px 0; font-size: 13px; margin-top: 50px; }
.footer-grid { display: table; width: 100%; table-layout: fixed; }
.footer-brand-col { display: table-cell; width: 50%; padding-right: 30px; }
.footer-links-col { display: table-cell; width: 25%; }
.text-white { color: white; }
.footer-links-col h4 { color: white; margin-bottom: 12px; }
.footer-links-col a { display: block; color: #BDC3C7; text-decoration: none; margin-bottom: 8px; }
.footer-divider { border: 0; border-top: 1px solid #34495E; margin: 25px 0; }
.footer-disclaimer-box { background: #2C3E50; padding: 15px; border-radius: 4px; font-size: 11px; }
.footer-bottom { text-align: center; margin-top: 20px; }