:root {
    --azul-profundo: #1A2B3C;
    --verde-esmeralda: #2ECC71;
    --terracota-suave: #E98369;
    --beige-calido: #F8F4E3;
    --dorado-mate: #B8860B;
    --white: #FFFFFF;
    --text-main: #2C3E50;
    --spacing-unit: 8px;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--azul-profundo);
    font-weight: 700;
}

.container-custom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

/* Header & Nav */
header {
    background: var(--white);
    border-bottom: 1px solid rgba(26, 43, 60, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-link {
    color: var(--azul-profundo);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 43, 60, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Insight Box */
.insight-box {
    background: var(--beige-calido);
    padding: 40px;
    border-left: 5px solid var(--dorado-mate);
    margin-top: 20px;
}

/* Cards & Grid */
.card-custom {
    border: none;
    border-radius: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-5px);
}

.card-img-top {
    border-radius: 0;
    height: 250px;
    object-fit: cover;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 50px;
    border-left: 4px solid var(--azul-profundo);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -58px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--verde-esmeralda);
    border-radius: 50%;
}

/* Footer */
footer {
    background: var(--azul-profundo);
    color: var(--beige-calido);
    padding: 80px 0 40px;
}

footer a {
    color: var(--dorado-mate);
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--azul-profundo);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.btn-custom {
    background: var(--verde-esmeralda);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 0;
    transition: 0.3s;
}

.btn-outline-custom {
    border: 1px solid var(--dorado-mate);
    color: var(--dorado-mate);
    background: transparent;
    padding: 12px 30px;
}

/* Matrix & Stats */
.matrix-table {
    width: 100%;
    border-collapse: collapse;
}

.matrix-table th, .matrix-table td {
    padding: 20px;
    border: 1px solid #ddd;
}

.stat-strip {
    background: var(--beige-calido);
    padding: 40px 0;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-family: 'Playfair Display';
    color: var(--terracota-suave);
}

/* Form */
.form-control-custom {
    border: none;
    border-bottom: 2px solid var(--azul-profundo);
    border-radius: 0;
    background: #f9f9f9;
    padding: 15px;
}

/* Utilities */
.text-accent { color: var(--terracota-suave); }
.bg-deep { background-color: var(--azul-profundo); color: white; }
.bg-beige { background-color: var(--beige-calido); }
.mb-large { margin-bottom: 80px; }