:root {
    --primary-bg: #F8F8F8;
    --secondary-bg: #FFFFFF;
    --text-dark: #2C3E50;
    --accent-orange: #E67E22;
    --accent-green: #27AE60;
    --neutral-gray: #AAAAAA;
    --border-light: #E0E0E0;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-dark);
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

h1 { font-size: 56px; line-height: 1.2; }
h2 { font-size: 40px; line-height: 1.3; margin-top: 4rem; }
h3 { font-size: 28px; line-height: 1.4; }

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

.section-spacing {
    padding: 100px 0;
}

.header-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--text-dark);
    z-index: 1000;
    padding: 15px 0;
}

.header-fixed a {
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 400;
    font-size: 17px;
    transition: color 0.3s ease;
}

.header-fixed a:hover, .header-fixed a.active {
    color: var(--accent-orange);
}

.hero-section {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 60px;
}

.hero-overlay {
    background: rgba(44, 62, 80, 0.6);
    padding: 40px;
    max-width: 800px;
    color: #FFFFFF;
}

.hero-overlay h1 { color: #FFFFFF; }

.btn-accent {
    background-color: var(--accent-orange);
    color: #FFFFFF;
    padding: 15px 35px;
    border: none;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-accent:hover {
    background-color: #D35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: #FFFFFF;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: var(--secondary-bg);
    padding: 40px;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.info-card:hover {
    border-color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.disclaimer-box {
    background: #FFFFFF;
    border-left: 5px solid var(--accent-orange);
    padding: 30px;
    margin: 40px 0;
}

.footer-institutional {
    background: #FFFFFF;
    border-top: 1px solid var(--border-light);
    padding: 80px 0 40px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #FFFFFF;
    border-top: 2px solid var(--text-dark);
    padding: 20px;
    z-index: 2000;
    display: none;
}

.img-fluid-custom {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

.mito-realidad {
    display: flex;
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}

.mito-box { flex: 1; padding-right: 20px; color: #C0392B; font-weight: bold; }
.realidad-box { flex: 1; padding-left: 20px; border-left: 1px solid var(--border-light); }

.glossary-rail {
    background: #F0F0F0;
    padding: 20px;
    border-radius: 4px;
    font-size: 16px;
}

@media (max-width: 992px) {
    .card-grid { grid-template-columns: 1fr; }
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
}