/* PALETA DE COLORES: AeroExpediente Nosotros (Variante Corporativa Gris-Plata) */
/* Azul Pizarra: #1C3144, Acento Plata: #A2A3BB, Fondo: #F8FAFC, Texto: #334155 */

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

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

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

/* TOP DISCLAIMER */
.top-disclaimer-bar {
    background-color: #FEF3C7;
    border-bottom: 1px solid #FDE68A;
    padding: 10px 0;
}

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

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

.text-disclaimer {
    display: table-cell;
    vertical-align: middle;
    font-size: 11px;
    color: #78350F;
}

/* HEADER */
.main-header {
    background-color: #1C3144;
    padding: 20px 0;
}

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

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

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

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

.logo-accent {
    color: #A2A3BB;
}

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

.nav-link {
    color: #E2E8F0;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
}

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

/* ABOUT HERO */
.about-hero {
    background-color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #E2E8F0;
}

.badge-about {
    background-color: #1C3144;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.about-hero h1 {
    font-size: 32px;
    color: #1C3144;
    margin-bottom: 15px;
}

.about-lead {
    font-size: 16px;
    color: #64748B;
    max-width: 800px;
    margin: 0 auto;
}

/* ABOUT DETAILS TABLE-LAYOUT */
.about-details {
    padding: 60px 0;
}

.details-table {
    display: table;
    width: 100%;
}

.details-row {
    display: table-row;
}

.details-cell {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
}

.text-block {
    padding-right: 40px;
}

.text-block h2 {
    font-size: 24px;
    color: #1C3144;
    margin-bottom: 15px;
}

.text-block p {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: justify;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

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

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

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

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

.text-white {
    color: #FFFFFF;
}

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

.footer-links-side h4 {
    color: #FFFFFF;
    margin-bottom: 15px;
}

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

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

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

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

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

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

.footer-disclaimer-text {
    font-size: 11px;
    color: #475569;
    text-align: justify;
    margin-bottom: 15px;
}

.copyright-text {
    color: #475569;
}