/* PALETA DE COLORES: AeroExpediente Principal */
/* Azul de Aviación: #0C1B33, Ámbar de Precisión: #E29578, Fondo Claro: #F4F7F9, Texto: #1E293B */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #F4F7F9;
    color: #1E293B;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP DISCLAIMER BAR */
.top-disclaimer-bar {
    background-color: #FFF3CD;
    border-bottom: 1px solid #FFEBAA;
    padding: 12px 0;
}

.container-disclaimer {
    display: table;
    width: 100%;
}

.icon-warning {
    display: table-cell;
    vertical-align: middle;
    width: 24px;
    padding-right: 12px;
}

.text-disclaimer {
    display: table-cell;
    vertical-align: middle;
    font-size: 12px;
    color: #721C24;
    text-align: left;
}

/* HEADER Y NAVEGACIÓN */
.main-header {
    background-color: #0C1B33;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: table;
    width: 100%;
}

.logo-brand {
    display: table-cell;
    vertical-align: middle;
    text-decoration: none;
}

.logo-svg {
    vertical-align: middle;
    margin-right: 10px;
}

.logo-text {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    vertical-align: middle;
}

.logo-accent {
    color: #E29578;
}

.main-nav {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}

.nav-link {
    color: #E2E8F0;
    text-decoration: none;
    margin-left: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #E29578;
}

/* HERO SECTION */
.hero-section {
    background-color: #FFFFFF;
    padding: 80px 0;
    border-bottom: 1px solid #E2E8F0;
}

.hero-container {
    display: table;
    width: 100%;
}

.hero-content {
    display: table-cell;
    width: 55%;
    vertical-align: middle;
    padding-right: 40px;
}

.hero-image-wrapper {
    display: table-cell;
    width: 45%;
    vertical-align: middle;
}

.badge {
    background-color: #E29578;
    color: #0C1B33;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 38px;
    color: #0C1B33;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 16px;
    color: #475569;
    margin-bottom: 30px;
}

.hero-actions .btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    margin-right: 15px;
    transition: background 0.3s ease;
}

.btn-primary {
    background-color: #0C1B33;
    color: #FFFFFF;
    border: 1px solid #0C1B33;
}

.btn-primary:hover {
    background-color: #1A3054;
}

.btn-secondary {
    background-color: transparent;
    color: #0C1B33;
    border: 1px solid #0C1B33;
}

.btn-secondary:hover {
    background-color: #F4F7F9;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* SERVICES SECTION */
.services-section {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 28px;
    color: #0C1B33;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #64748B;
    font-size: 15px;
}

.services-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.service-card {
    display: table-cell;
    width: 33.333%;
    background-color: #FFFFFF;
    padding: 35px;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    vertical-align: top;
}

.service-card:nth-child(2) {
    border-left: none;
    border-right: none;
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    color: #0C1B33;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: #475569;
}

/* PROCESS SECTION */
.process-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.process-steps {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.step-item {
    display: table-cell;
    padding: 0 25px;
    vertical-align: top;
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #E29578;
    line-height: 1;
    margin-bottom: 15px;
}

.step-item h4 {
    font-size: 16px;
    color: #0C1B33;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 13px;
    color: #475569;
}

/* CTA & FORM SECTION */
.cta-section {
    padding: 80px 0;
    background-color: #0C1B33;
    color: #FFFFFF;
}

.cta-container {
    display: table;
    width: 100%;
}

.cta-text-side {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    padding-right: 50px;
}

.cta-form-side {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    color: #1E293B;
}

.cta-text-side h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-text-side p {
    color: #94A3B8;
    margin-bottom: 30px;
}

.trust-points {
    margin-top: 20px;
}

.trust-point {
    margin-bottom: 15px;
    font-size: 14px;
    color: #E2E8F0;
}

.icon-gold {
    vertical-align: middle;
    margin-right: 10px;
}

/* FORM STYLES */
.main-form .form-group {
    margin-bottom: 20px;
}

.main-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #334155;
}

.main-form .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    font-size: 14px;
    color: #1E293B;
}

.main-form .form-control:focus {
    outline: none;
    border-color: #0C1B33;
}

.form-checkbox {
    margin-bottom: 20px;
    font-size: 12px;
    color: #475569;
}

.form-checkbox input {
    margin-right: 8px;
    vertical-align: middle;
}

.form-checkbox a {
    color: #0C1B33;
    text-decoration: underline;
}

.btn-submit {
    background-color: #E29578;
    color: #0C1B33;
    width: 100%;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background-color: #D18467;
}

.error-msg {
    color: #DC2626;
    font-size: 11px;
    display: none;
    margin-top: 5px;
}

/* FOOTER */
.main-footer {
    background-color: #081223;
    color: #94A3B8;
    padding: 60px 0 30px 0;
    font-size: 13px;
    border-top: 4px solid #E29578;
}

.footer-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.footer-brand-side {
    display: table-cell;
    width: 50%;
    padding-right: 40px;
    vertical-align: top;
}

.footer-links-side {
    display: table-cell;
    width: 25%;
    vertical-align: top;
}

.text-white {
    color: #FFFFFF;
}

.footer-brand-desc {
    margin-top: 15px;
    line-height: 1.5;
}

.footer-links-side h4 {
    color: #FFFFFF;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #E29578;
}

.footer-bottom-disclaimer {
    margin-top: 40px;
}

.footer-divider {
    border: none;
    border-top: 1px solid #1E293B;
    margin-bottom: 25px;
}

.footer-disclaimer-text {
    font-size: 11px;
    line-height: 1.6;
    color: #64748B;
    text-align: justify;
    margin-bottom: 15px;
}

.copyright-text {
    font-size: 11px;
    color: #475569;
}