@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --burgundy: #590F29;
    --burgundy-dark: #3D0A1C;
    --burgundy-light: #7A1B3D;
    --gold: #E6C689;
    --gold-dark: #C09863;
    --cream: #FDF8F0;
    --white-warm: #FCFAF9;
    --text-dark: #2C1810;
    --text-muted: #6B5B54;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white-warm);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.navbar {
    background: rgba(89, 15, 41, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 9999;
}

.navbar-brand {
    padding: 0;
}

.logo-nav {
    height: 48px;
    width: auto;
}

.logo-nav:hover {
    transform: scale(1.05);
}

.navbar-toggler {
    border: 1px solid rgba(230, 198, 137, 0.3);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28230, 198, 137, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-gold {
    background: var(--gold);
    color: var(--burgundy-dark);
    font-weight: 600;
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 0.6rem 1.75rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 198, 137, 0.25);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    font-weight: 500;
    border: 2px solid rgba(230, 198, 137, 0.5);
    border-radius: 50px;
    padding: 0.6rem 1.75rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-gold:hover {
    background: rgba(230, 198, 137, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline-light {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.6rem 1.75rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(61, 10, 28, 0.6);
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(230, 198, 137, 0.15);
    color: var(--gold);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    border: 1px solid rgba(230, 198, 137, 0.25);
    margin-bottom: 2rem;
}

.hero-pretitle i {
    font-size: 1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.75rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(230, 198, 137, 0.75);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem auto;
    max-width: 200px;
}

.hero-divider span {
    flex: 1;
    height: 1px;
    background: rgba(230, 198, 137, 0.4);
}

.hero-divider i {
    color: var(--gold);
    font-size: 0.7rem;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    font-weight: 600;
    color: var(--white-warm);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text strong {
    color: var(--gold);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.hero-scroll a:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.editorial {
    padding: 100px 0;
    background: var(--cream);
}

.editorial-media {
    position: relative;
}

.media-frame {
    position: relative;
    padding: 1rem;
}

.media-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 3px solid var(--gold-dark);
    border-radius: 16px;
    z-index: 1;
}

.media-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(89, 15, 41, 0.18);
}

.media-floating {
    position: absolute;
    bottom: -20px;
    right: 10px;
    z-index: 3;
}

.floating-card {
    background: var(--burgundy);
    color: var(--gold);
    padding: 1rem 1.5rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 15px 40px rgba(89, 15, 41, 0.3);
}

.floating-card i {
    font-size: 1.8rem;
}

.fc-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.fc-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.editorial-body {
    padding-left: 1rem;
}

.section-label {
    display: inline-block;
    color: var(--burgundy-light);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.75rem;
}

.section-label.light {
    color: rgba(230, 198, 137, 0.8);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.section-title.light {
    color: var(--white-warm);
}

.section-title .text-gold {
    color: var(--gold-dark);
}

.section-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.section-text strong {
    color: var(--burgundy);
    font-weight: 600;
}

.section-text.light {
    color: rgba(255, 255, 255, 0.85);
}

.section-text.light strong {
    color: var(--gold);
}

.editorial-values {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.ev-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: var(--burgundy);
    font-weight: 500;
}

.ev-icon {
    width: 28px;
    height: 28px;
    background: rgba(230, 198, 137, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 1rem;
    flex-shrink: 0;
}

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

.nacional {
    background: var(--burgundy-dark);
}

.politica {
    background: var(--cream);
}

.section-intro {
    margin-bottom: 3.5rem;
}

.section-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 900;
    color: rgba(230, 198, 137, 0.1);
    line-height: 1;
    display: block;
    margin-bottom: -1rem;
}

.politica .section-number {
    color: rgba(89, 15, 41, 0.07);
}

.content-media {
    position: relative;
}

.content-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.politica .content-img {
    box-shadow: 0 20px 45px rgba(89, 15, 41, 0.2);
}

.content-caption {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--burgundy-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(230, 198, 137, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-caption.dark-cap {
    background: var(--burgundy);
    color: var(--gold);
    box-shadow: 0 8px 25px rgba(89, 15, 41, 0.3);
}

.content-body {
    padding: 1rem 0;
}

.content-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(230, 198, 137, 0.15);
    color: var(--gold);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(230, 198, 137, 0.2);
}

.chip i {
    font-size: 0.9rem;
}

.dark-chips .chip {
    background: rgba(89, 15, 41, 0.08);
    color: var(--burgundy);
    border: 1px solid rgba(89, 15, 41, 0.12);
}

.cta-final {
    padding: 80px 0;
    background: var(--white-warm);
}

.cta-box {
    background: var(--burgundy);
    border-radius: 24px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 50%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(230, 198, 137, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gold);
    margin-bottom: 1rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 0;
}

.cta-text strong {
    color: var(--gold);
}

.footer {
    background: var(--burgundy-dark);
    padding: 45px 0;
    border-top: 1px solid rgba(230, 198, 137, 0.1);
}

.footer-logo {
    height: 42px;
    width: auto;
    opacity: 0.9;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    margin-top: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(230, 198, 137, 0.1);
    color: var(--gold);
    border-radius: 50%;
    margin: 0 0.4rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--burgundy-dark);
    transform: translateY(-3px);
}

.footer-copy p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .hero-container {
        padding-top: 90px;
        padding-bottom: 60px;
    }

    .media-img {
        height: 380px;
    }

    .editorial-body {
        padding-left: 0;
        margin-top: 1rem;
    }

    .content-img {
        height: 300px;
        margin-bottom: 1rem;
    }

    .content-caption {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }

    .cta-box {
        padding: 2rem;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-copy {
        text-align: center !important;
    }

    .media-floating {
        right: 5px;
        bottom: -15px;
    }

    .floating-card {
        padding: 0.75rem 1rem;
    }

    .floating-card i {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-pretitle {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .media-img {
        height: 300px;
    }

    .content-img {
        height: 220px;
    }

    .content-chips {
        justify-content: center;
    }

    .chip {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .section-number {
        margin-bottom: -0.5rem;
    }

    .cta-box {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .hero-cta .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .media-frame::before {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}
