:root {
    --fondo-principal: #F7F4ED;
    --texto-oscuro: #1A1A1A;
    --color-acento: #0E2F22;
    --color-enlace: #7A5B3E;
    --muted: #6b6b6b;
    --gold-1: #d4af37;
    --gold-2: #b68b2a;
    --gold-3: #f1d06b;
    --radius: 14px
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--fondo-principal);
    color: var(--texto-oscuro);
    font-family: "EB Garamond", Garamond, Palatino, serif;
    line-height: 1.6
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 31, 23, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 16px;
}

.brand {
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #F7F4ED;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.2s ease;
}

.brand:hover {
    opacity: 0.92;
    text-decoration: none;
}

.brand__logo {
    height: 44px;
    width: auto;
    border-radius: 6px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    display: block;
}

.nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    color: #E2DDD2;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.98rem;
    font-family: 'EB Garamond', serif;
    padding: 7px 13px;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
}

.nav__link:hover {
    color: #FFFFFF;
    background: rgba(212, 175, 55, 0.12);
    text-decoration: none;
}

.nav__link.is-active {
    color: var(--gold-1);
    font-weight: 700;
    background: rgba(212, 175, 55, 0.16);
    border: 1px solid rgba(212, 175, 55, 0.35);
    text-decoration: none;
}

/* ===== Links Destacados en Header (Apoyar + Publicita) ===== */
.nav__link--highlight {
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-1) !important;
    background: rgba(212, 175, 55, 0.08);
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.nav__link--highlight:hover {
    background: rgba(212, 175, 55, 0.22);
    color: #FFFFFF !important;
    border-color: var(--gold-1);
    transform: translateY(-1px);
    text-decoration: none !important;
}

.nav__link--cta {
    background: linear-gradient(135deg, #D4AF37 0%, #B68B2A 100%);
    color: #081C14 !important;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.nav__link--cta:hover {
    background: linear-gradient(135deg, #E5C158 0%, #C99E3B 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.45);
    color: #081C14 !important;
    text-decoration: none !important;
}

/* Responsive Nav Links */
@media (max-width: 960px) {
    .nav__link--highlight,
    .nav__link--cta {
        padding: 8px 12px !important;
        font-size: 0.9rem;
    }
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #1a1a1a;
    font-size: 20px
}

.main {
    padding: 40px 0
}

.hero {
    padding: 40px;
    border-radius: var(--radius);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .06)
}

.hero__title {
    margin: 0 0 8px;
    font-size: 2.4rem;
    font-family: "Cinzel", serif;
    letter-spacing: .5px;
    color: var(--texto-oscuro)
}

.hero__subtitle {
    margin: 0;
    color: var(--muted)
}

.section {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.card {
    border-radius: var(--radius);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08)
}

.bio h2 {
    text-align: center;
    font-family: 'Cinzel', serif;
    color: #1a1a1a;
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 16px;
    border-bottom: none;
}

.bio h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #D4AF37, #B68B2A);
}

.page-header {
    border-bottom: 2px solid var(--gold-1);
    padding-bottom: 20px;
    margin-top: 40px;
    position: relative
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--gold-2)
}

.page-header h1 {
    margin: 0;
    font-size: 2rem;
    font-family: "Cinzel", serif;
    position: relative;
    display: inline-block
}

.page-header p {
    margin: 8px 0 0;
    color: var(--muted)
}

.footer {
    margin-top: 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
    color: var(--muted)
}

@media (max-width: 880px) {
    .section,
    .grid {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(212, 175, 55, 0.15);
        border: 1px solid rgba(212, 175, 55, 0.4);
        color: var(--gold-1);
        font-size: 1.4rem;
        padding: 6px 14px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .menu-toggle:hover {
        background: rgba(212, 175, 55, 0.25);
        border-color: var(--gold-1);
    }

    .nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        right: 16px;
        left: 16px;
        background: rgba(8, 25, 18, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(212, 175, 55, 0.3);
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
        flex-direction: column;
        gap: 8px;
        z-index: 101;
    }

    .nav.open {
        display: flex;
        animation: navSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav__link {
        width: 100%;
        text-align: center;
        padding: 10px 16px;
        font-size: 1.05rem;
    }
}

@keyframes navSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, .6) 50%, rgba(255, 255, 255, 0) 70%);
    transform: translateX(-120%) skewX(-12deg);
    opacity: .0
}

.header.is-shining::after {
    animation: shineSweep 1.2s ease
}

@keyframes shineSweep {
    0% {
        transform: translateX(-120%) skewX(-12deg);
        opacity: .0
    }

    35% {
        opacity: .6
    }

    50% {
        opacity: .8
    }

    100% {
        transform: translateX(120%) skewX(-12deg);
        opacity: .0
    }
}

button,
input,
textarea,
select {
    font: inherit
}

input,
textarea,
select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: #ffffff;
    color: var(--texto-oscuro)
}

label {
    display: block;
    margin: 8px 0 6px;
    font-weight: 600
}

.form {
    max-width: 720px
}

.actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 16px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 12px;
    border: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    color: #1a1a1a;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12)
}

.btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .16)
}

.status {
    margin-top: 12px;
    color: var(--muted)
}

blockquote {
    margin: 24px 0;
    padding: 8px 16px;
    border-left: 4px solid var(--color-acento);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--texto-oscuro)
}

.quotes {
    margin-top: 32px
}

.quotes__slider {
    position: relative;
    overflow: hidden
}

.quote {
    display: none;
    font-size: 1.4rem;
    font-style: italic
}

.quote.is-active {
    display: block
}

.quotes__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 12px
}

.quotes__prev,
.quotes__next {
    border: 0;
    background: #fff;
    color: var(--texto-oscuro);
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 999px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: all .3s ease
}

.quotes__prev:hover,
.quotes__next:hover {
    color: var(--color-acento)
}

.quotes__dots {
    display: flex;
    gap: 8px
}

.quotes__dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(0, 0, 0, .2);
    cursor: pointer
}

.quotes__dots button.active {
    background: var(--color-acento)
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: #fff;
    color: var(--texto-oscuro);
    border-radius: 999px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto
}

body.menu-open {
    overflow: hidden
}

/* Books Section - Modern Design */
.books {
    display: grid;
    gap: 40px;
    margin-top: 40px;
    animation: fadeInUp 0.6s ease-out
}

.book {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.book::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), rgba(182, 139, 42, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none
}

.book:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3)
}

.book:hover::before {
    opacity: 1
}

.book__cover {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease
}

.book__cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease
}

.book:hover .book__cover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2)
}

.book:hover .book__cover::after {
    opacity: 1
}

.book__cover img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px
}

.book__info {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.book__title {
    font-family: "Cinzel", serif;
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.3;
    position: relative
}

.book__title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-1), transparent);
    opacity: 0.7
}

.book__title a {
    color: var(--color-acento);
    text-decoration: none;
    transition: color 0.3s ease
}

.book__title a:hover {
    color: var(--gold-2)
}

.book__desc {
    color: var(--texto-oscuro);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 8px 0 0;
    opacity: 0.9
}

@media (max-width:880px) {
    .book {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px
    }

    .book__cover {
        max-width: 300px;
        margin: 0 auto
    }
}

@media (max-width:600px) {
    .book__cover {
        max-width: 240px
    }
}

/* Bio Styles - Modern Design */
.bio-card {
    border-radius: var(--radius);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .06);
    padding: 48px 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    margin-top: 32px;
    animation: fadeInUp 0.6s ease-out
}

.bio {
    max-width: 860px;
    margin: 0 auto;
    padding: 24px 0
}

.bio h2 {
    font-family: "Cinzel", serif;
    margin: 40px 0 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-acento);
    position: relative;
    padding-left: 16px
}

.bio h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold-1), transparent)
}

.bio h2:first-of-type {
    border-top: 0;
    padding-top: 0
}

.bio h2:first-of-type::before {
    display: none
}

.bio h3 {
    margin: 16px 0 6px;
    color: var(--color-acento);
    font-size: 1.1rem
}

.bio p {
    font-family: 'EB Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 24px;
    text-align: justify;
}

/* Drop Cap for the first paragraph */
.bio p:first-of-type::first-letter {
    float: left;
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    line-height: 0.85;
    padding-right: 12px;
    padding-top: 8px;
    color: #D4AF37;
    font-weight: 700;
}

.bio ul {
    margin: 8px 0 16px;
    padding-left: 22px;
    list-style: disc
}

.bio li {
    margin: 6px 0;
    line-height: 1.6
}

.bio a {
    color: var(--color-enlace);
    text-decoration: none;
    border-bottom: 1px dashed rgba(122, 91, 62, .4);
    transition: all .2s ease
}

.bio a:hover {
    color: var(--color-acento);
    border-bottom-color: var(--color-acento)
}

/* Bio Hero Section - Modern Design */
.bio-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0e2f22 0%, #174d39 50%, #0a2218 100%);
    padding: 60px 24px;
}

.bio-hero__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 1100px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.bio-hero__image {
    width: 380px;
    max-width: 100%;
    height: 380px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--gold-1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    background: #111;
    flex-shrink: 0;
}

.bio-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.bio-hero__quote-box {
    flex: 1;
    min-width: 280px;
    max-width: 600px;
    padding: 36px 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-left: 5px solid var(--gold-1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

/* Intro image before biography */
/* Intro image before biography */
.bio-intro-container {
    text-align: center;
    margin: 32px 0 48px;
    position: relative;
}

.bio-intro-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 4px solid #D4AF37;
    padding: 4px;
    background-color: #fff;
    box-shadow:
        0 0 0 2px #B68B2A,
        0 10px 25px rgba(0, 0, 0, 0.15);
    display: inline-block;
    transition: transform 0.3s ease;
}

.bio-intro-image:hover {
    transform: translateY(-4px);
}


.bio-hero__quote {
    max-width: 100%;
    margin: 0;
    position: relative;
    padding-left: 50px;
}

.quote-mark {
    position: absolute;
    left: 0;
    top: -12px;
    font-size: 4.5rem;
    line-height: 1;
    font-family: "Cinzel", serif;
    color: var(--gold-1);
    opacity: 0.85;
    font-weight: 700;
}

.bio-hero__quote p {
    margin: 0;
    font-size: 1.65rem;
    font-style: italic;
    line-height: 1.6;
    color: #f5f2eb;
    font-family: "EB Garamond", serif;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bio-hero__quote cite {
    display: block;
    margin-top: 16px;
    font-family: "Cinzel", serif;
    font-size: 0.95rem;
    color: var(--gold-1);
    font-style: normal;
    letter-spacing: 1.5px;
    text-align: right;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 880px) {
    .bio-hero {
        padding: 40px 20px;
        min-height: auto;
    }

    .bio-hero__inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .bio-hero__image {
        width: 300px;
        height: 300px;
    }

    .bio-hero__quote-box {
        width: 100%;
        max-width: 500px;
        padding: 28px 24px;
    }

    .bio-hero__quote {
        padding-left: 0;
        padding-top: 24px;
    }

    .quote-mark {
        left: 50%;
        transform: translateX(-50%);
        top: -18px;
        font-size: 3.5rem;
    }

    .bio-hero__quote p {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .bio-hero__image {
        width: 250px;
        height: 250px;
    }

    .bio-hero__quote p {
        font-size: 1.15rem;
    }
}

/* Poems Section - Elegant Design */
.poems {
    display: grid;
    gap: 48px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
}

.poem-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 48px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    overflow: hidden
}

.poem-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold-1), var(--gold-2));
    opacity: 0.6
}

.poem-card__title {
    font-family: "Cinzel", serif;
    font-size: 1.8rem;
    color: var(--color-acento);
    margin: 0 0 32px;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative
}

.poem-card__title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-1), transparent)
}

.poem-card__content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--texto-oscuro);
    text-align: center
}

.poem-card__content p {
    margin: 0 0 24px;
    font-style: italic
}

.poem-card__content p:last-child {
    margin-bottom: 0
}

.poem-card__author {
    font-size: 1.1rem;
    color: var(--gold-2);
    font-style: italic;
    text-align: right;
    margin: 32px 0 0;
    font-weight: 600;
    letter-spacing: 0.3px
}

@media (max-width:880px) {
    .poems {
        max-width: 100%
    }

    .poem-card {
        padding: 32px 24px
    }

    .poem-card__title {
        font-size: 1.5rem
    }

    .poem-card__content {
        font-size: 1.05rem
    }
}

/* Load More Button */
.poem-card--hidden {
    display: none
}

.load-more-container {
    text-align: center;
    margin: 48px 0 32px
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(182, 139, 42, 0.2));
    color: var(--color-acento);
    border: 2px solid var(--gold-1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08)
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    color: #1a1a1a;
    border-color: var(--gold-2);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12)
}

/* News Section Styles */
.news-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.news-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-header {
    text-align: center;
    margin-bottom: 48px;
}

.news-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--color-primario);
    margin-bottom: 16px;
}

.news-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem;
    color: var(--texto-oscuro);
    font-style: italic;
}

.news-article {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.article-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 1.4rem;
    color: var(--color-acento);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.article-intro,
.article-chapter,
.article-conclusion {
    margin-bottom: 40px;
}

.news-article h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--color-primario);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold-1);
    padding-bottom: 8px;
    display: inline-block;
}

.news-article h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #4a4a4a;
    margin: 24px 0 12px;
}

.news-article p {
    font-family: 'EB Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
    text-align: justify;
}

.news-article ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 24px;
}

.news-article li {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin: 24px 0;
}

.news-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
}

.news-table caption {
    caption-side: top;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--color-primario);
    text-align: left;
}

.news-table th,
.news-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.news-table th {
    background-color: var(--color-primario);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.news-table tr:hover {
    background-color: #fcfcfc;
}

/* References Grid */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.ref-card {
    display: block;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold-1);
}

.ref-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-left-color: var(--color-acento);
}

.ref-source {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--color-primario);
    margin-bottom: 8px;
    font-weight: 700;
}

.ref-title {
    display: block;
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .news-article {
        padding: 30px 20px;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .news-header h2 {
        font-size: 2rem;
    }
}

/* ========================================
   MAGAZINE LAYOUT STYLES - Modern News Design
   ======================================== */

/* Magazine Layout Container */
.magazine-layout {
    background: var(--fondo-principal);
    padding-bottom: 60px;
}

/* Hero Magazine Section */
.hero-magazine {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 520px;
    margin-bottom: 60px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-magazine__image {
    position: relative;
    overflow: hidden;
    background: #f7f4ee;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.hero-magazine__image img {
    max-width: 100%;
    max-height: 480px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 3px solid rgba(212, 175, 55, 0.35);
    transition: transform 0.4s ease;
}

.hero-magazine:hover .hero-magazine__image img {
    transform: scale(1.02);
}

.hero-magazine__content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
}

.hero-magazine__category {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(182, 139, 42, 0.15));
    border-left: 3px solid var(--gold-1);
    width: fit-content;
}

.hero-magazine__title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--color-acento);
    margin: 0 0 24px;
    font-weight: 700;
}

.hero-magazine__excerpt {
    font-family: 'EB Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0 0 32px;
}

.hero-magazine__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-acento);
    text-decoration: none;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    border-radius: 6px;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.hero-magazine__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    filter: brightness(1.05);
}

/* Featured Biography Section */
.featured-bio {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.featured-bio__content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.featured-bio__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 6px solid #D4AF37;
    background: #fff;
    padding: 8px;
    transition: all 0.4s ease;
}

.featured-bio__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.featured-bio__image:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
    border-color: #B68B2A;
}

.featured-bio__image:hover::after {
    opacity: 1;
}

.featured-bio__image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.featured-bio__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-bio__label {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-2);
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(182, 139, 42, 0.15));
    border-left: 3px solid var(--gold-1);
    width: fit-content;
}

.featured-bio__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--color-acento);
    margin: 0;
    font-weight: 700;
}

.featured-bio__excerpt {
    font-family: 'EB Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
    text-align: justify;
}

.featured-bio__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-acento), #0a1f16);
    border-radius: 6px;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(14, 47, 34, 0.3);
    margin-top: 8px;
}

.featured-bio__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 47, 34, 0.4);
    background: linear-gradient(135deg, #0a1f16, var(--color-acento));
    gap: 12px;
}

@media (max-width: 1024px) {
    .featured-bio__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .featured-bio__image {
        max-width: 350px;
        margin: 0 auto;
    }

    .featured-bio__label,
    .featured-bio__link {
        margin-left: auto;
        margin-right: auto;
    }

    .featured-bio__excerpt {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .featured-bio {
        padding: 60px 0;
    }

    .featured-bio__title {
        font-size: 2rem;
    }

    .featured-bio__excerpt {
        font-size: 1.05rem;
    }

    .featured-bio__image {
        max-width: 280px;
    }
}

/* Featured Quotes Section */
.featured-quotes {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quote-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.quote-card__image {
    height: 280px;
    overflow: hidden;
    background: #f7f4ee;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.quote-card__image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.quote-card:hover .quote-card__image img {
    transform: scale(1.03);
}

.quote-card__content {
    padding: 28px 24px;
}

.quote-card__text {
    font-family: 'EB Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--texto-oscuro);
    margin: 0 0 16px;
    border-left: none;
    padding-left: 0;
}

.quote-card__author {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--gold-2);
    font-weight: 600;
}

/* Content Grid Section */
.content-grid {
    padding: 60px 0;
}

.content-grid .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 0;
}

.content-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.content-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.content-card--large {
    grid-column: span 2;
}

.content-card--accent {
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
    border-left: 4px solid var(--gold-1);
}

.content-card--highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(182, 139, 42, 0.03));
}

.content-card__image {
    height: 250px;
    overflow: hidden;
    background: #f8f6f0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.content-card__image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.content-card--large .content-card__image {
    height: 300px;
    padding: 18px;
}

.content-card:hover .content-card__image img {
    transform: scale(1.03);
}

.content-card__body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-card__category {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 12px;
}

.content-card__title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    line-height: 1.3;
    color: var(--color-acento);
    margin: 0 0 16px;
    font-weight: 600;
}

.content-card__excerpt {
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 0 20px;
    flex: 1;
}

.content-card__link {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-acento);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.content-card__link:hover {
    color: var(--gold-2);
    gap: 10px;
}

.content-card__list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.content-card__list li {
    margin: 12px 0;
}

.content-card__list a {
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    color: var(--color-enlace);
    text-decoration: none;
    border-bottom: 1px solid rgba(122, 91, 62, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.content-card__list a:hover {
    color: var(--color-acento);
    border-bottom-color: var(--color-acento);
}

/* Full Article Section */
.full-article {
    padding: 80px 0;
    background: #fff;
    margin-top: 60px;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.article-category {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 20px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(182, 139, 42, 0.15));
    border-radius: 4px;
}

.article-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--color-acento);
    margin: 0 0 20px;
    font-weight: 700;
}

.article-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #4a4a4a;
    font-style: italic;
    margin: 0;
}

.article-body {
    font-family: 'EB Garamond', serif;
}

.article-body h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--color-acento);
    margin: 60px 0 24px;
    padding-top: 40px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.article-body h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.article-body h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--color-acento);
    margin: 40px 0 20px;
    font-weight: 600;
}

.article-body p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
    text-align: justify;
}

.article-callout {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(182, 139, 42, 0.05));
    border-left: 4px solid var(--gold-1);
    padding: 24px 28px;
    margin: 32px 0;
    border-radius: 6px;
}

.article-callout p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.article-callout strong {
    color: var(--color-acento);
    font-weight: 600;
}

.table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'EB Garamond', serif;
    background: #fff;
}

.article-table caption {
    caption-side: top;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px;
    text-align: left;
    color: var(--color-acento);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(182, 139, 42, 0.05));
}

.article-table th,
.article-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.article-table thead th {
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    color: #1a1a1a;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.article-table tbody tr {
    transition: background 0.2s ease;
}

.article-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.article-table tbody td {
    font-size: 1.05rem;
}

.article-references {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.article-references h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--color-acento);
    margin: 0 0 32px;
}

.references-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.ref-link {
    display: block;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold-1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ref-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-left-color: var(--color-acento);
}

.ref-source {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 8px;
}

.ref-title {
    display: block;
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-magazine {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-magazine__image {
        height: 400px;
    }

    .hero-magazine__content {
        padding: 40px;
    }

    .hero-magazine__title {
        font-size: 2.2rem;
    }

    .quote-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .content-grid .grid {
        grid-template-columns: 1fr;
    }

    .content-card--large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero-magazine__content {
        padding: 32px 24px;
    }

    .hero-magazine__title {
        font-size: 1.8rem;
    }

    .hero-magazine__excerpt {
        font-size: 1.1rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-body h2 {
        font-size: 1.6rem;
    }

    .full-article {
        padding: 40px 0;
    }

    .references-list {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CONTACT FORM STYLES
   ======================================== */

.contact-section {
    padding: 60px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Image Column */
.contact-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.contact-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.contact-info {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    padding: 28px;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold-1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--color-acento);
    margin: 0 0 16px;
}

.contact-info p {
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 8px 0;
}

.contact-info strong {
    color: var(--color-acento);
    font-weight: 600;
}

/* Contact Form Column */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper label {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-acento);
    margin: 16px 0 8px;
    display: block;
}

.contact-form-wrapper label:first-of-type {
    margin-top: 0;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    color: var(--texto-oscuro);
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--gold-1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form-wrapper textarea {
    resize: vertical;
    min-height: 140px;
}

/* Privacy Checkbox */
.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(182, 139, 42, 0.03));
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.privacy-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--gold-1);
}

.privacy-checkbox label {
    font-family: 'EB Garamond', serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

.privacy-checkbox a {
    color: var(--color-acento);
    text-decoration: none;
    border-bottom: 1px solid var(--color-acento);
    transition: all 0.2s ease;
    font-weight: 600;
}

.privacy-checkbox a:hover {
    color: var(--gold-2);
    border-bottom-color: var(--gold-2);
}

/* Form Actions */
.contact-form-wrapper .actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.contact-form-wrapper .btn-primary {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.05rem;
}

.contact-form-wrapper .status {
    text-align: center;
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    padding: 12px;
    border-radius: 6px;
}

.contact-form-wrapper .status.success {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.contact-form-wrapper .status.error {
    background: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-image {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .contact-image img {
        height: 280px;
    }

    .privacy-checkbox {
        padding: 16px;
    }
}

/* ========================================
   PUBLICIDAD PROFESIONAL Y BARRA LATERAL
   ======================================== */

/* Contenedores de Anuncios - Estilo Editorial Elegante */
.ad-banner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 32px auto;
    padding: 14px 14px 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(249,247,244,0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    text-align: center;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.ad-banner-container::before {
    content: "— Publicidad —";
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold-2);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.85;
}

.ad-banner-container:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.08);
}

.ad-banner-728x90 {
    width: 728px;
    min-height: 90px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        repeating-linear-gradient(45deg,
            rgba(212, 175, 55, 0.02) 0px,
            rgba(212, 175, 55, 0.02) 10px,
            rgba(255, 255, 255, 0) 10px,
            rgba(255, 255, 255, 0) 20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    position: relative;
}

.ad-sidebar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 0 8px;
    padding: 14px 14px 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(249,247,244,0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    text-align: center;
    width: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
}

.ad-sidebar-container::before {
    content: "— Publicidad —";
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold-2);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.85;
}

.ad-box-300x250 {
    width: 300px;
    min-height: 250px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        repeating-linear-gradient(45deg,
            rgba(212, 175, 55, 0.02) 0px,
            rgba(212, 175, 55, 0.02) 10px,
            rgba(255, 255, 255, 0) 10px,
            rgba(255, 255, 255, 0) 20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    position: relative;
}

/* Nuevos formatos de publicidad profesional */

/* 1. Anuncio In-Article (entre párrafos - para artículos largos) */
.ad-inarticle {
    max-width: 680px;
    margin: 48px auto;
    padding: 24px 24px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(249,247,244,0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.ad-inarticle::before {
    content: "· Publicidad ·";
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold-2);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
    opacity: 0.9;
}

.ad-inarticle__slot {
    min-height: 220px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        repeating-linear-gradient(135deg,
            rgba(14, 47, 34, 0.015) 0px,
            rgba(14, 47, 34, 0.015) 12px,
            rgba(255, 255, 255, 0) 12px,
            rgba(255, 255, 255, 0) 24px);
    border: 1px dashed rgba(212, 175, 55, 0.35);
    border-radius: 8px;
}

/* 2. Anuncio Sticky en Footer Móvil (320x50 - Mobile Leaderboard) */
.ad-mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    padding: 8px 12px 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,1) 100%);
    border-top: 2px solid var(--gold-1);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
}

.ad-mobile-sticky__inner {
    max-width: 420px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.ad-mobile-sticky__label {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--gold-2);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.9;
}

.ad-mobile-sticky__slot {
    min-height: 50px;
    background:
        repeating-linear-gradient(45deg,
            rgba(212, 175, 55, 0.04) 0px,
            rgba(212, 175, 55, 0.04) 6px,
            rgba(255, 255, 255, 0) 6px,
            rgba(255, 255, 255, 0) 12px);
    border: 1px dashed rgba(212, 175, 55, 0.35);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-mobile-sticky__close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    color: var(--muted);
    font-size: 0.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    align-self: center;
}

.ad-mobile-sticky__close:hover {
    background: var(--gold-1);
    color: #1a1a1a;
    border-color: var(--gold-1);
}

/* 3. Ad Native (Anuncio Nativo estilo Artículo) */
.ad-native-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    position: relative;
}

.ad-native-card::before {
    content: "· Publicidad ·";
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 1.5px;
}

.ad-native-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.ad-native-card__image {
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f9f7f4 0%, #efece3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-native-card__body {
    padding: 24px;
}

.ad-native-card__category {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 10px;
}

.ad-native-card__title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    line-height: 1.35;
    color: var(--color-acento);
    margin: 0 0 12px;
    font-weight: 600;
}

.ad-native-card__excerpt {
    font-family: 'EB Garamond', serif;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

/* 4. Skyscraper laterales desactivados para evitar contaminación visual */
.ad-skyscraper-left,
.ad-skyscraper-right {
    display: none !important;
}

    .ad-skyscraper-left::before,
    .ad-skyscraper-right::before {
        content: "· Pub ·";
        font-family: 'Cinzel', serif;
        font-size: 0.6rem;
        font-weight: 700;
        color: var(--gold-2);
        letter-spacing: 2px;
        display: block;
        margin-bottom: 10px;
    }

    .ad-skyscraper-left {
        left: calc(50% - 680px);
    }

    .ad-skyscraper-right {
        right: calc(50% - 680px);
    }

    .ad-skyscraper__slot {
        width: 140px;
        min-height: 600px;
        margin: 0 auto;
        background:
            repeating-linear-gradient(180deg,
                rgba(14, 47, 34, 0.02) 0px,
                rgba(14, 47, 34, 0.02) 12px,
                rgba(255, 255, 255, 0) 12px,
                rgba(255, 255, 255, 0) 24px);
        border: 1px dashed rgba(212, 175, 55, 0.3);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Texto placeholder elegante para espacios publicitarios vacíos */
.ad-placeholder-text {
    font-family: 'EB Garamond', serif;
    color: var(--muted);
    font-style: italic;
    font-size: 0.95rem;
    margin: 0;
    padding: 0 20px;
    line-height: 1.5;
    opacity: 0.85;
}

.ad-placeholder-text strong {
    color: var(--gold-2);
    font-weight: 600;
    font-style: normal;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

/* =========================================================
   Consentimiento de Cookies — Obligatorio para AdSense
   (Cumplimiento Ley 1581/2012 Colombia + GDPR UE)
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: min(96%, 880px);
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  padding: 24px 28px;
  z-index: 9998;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: 'EB Garamond', serif;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.cookie-banner.is-visible {
  transform: translateX(-50%) translateY(0);
}
.cookie-banner__icon { display: none; }
.cookie-banner__content h3 {
  font-family: 'Cinzel', serif;
  margin: 0 0 8px;
  color: var(--color-acento);
  font-size: 1.08rem;
  letter-spacing: 0.5px;
}
.cookie-banner__content p {
  margin: 0;
  color: #4a4a4a;
  font-size: 0.98rem;
  line-height: 1.6;
}
.cookie-banner__content a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 190px;
}
.cookie-banner__btn {
  padding: 11px 22px;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.2s;
  text-transform: uppercase;
  white-space: nowrap;
}
.cookie-banner__btn--accept {
  background: var(--color-acento);
  color: #fff;
  border-color: var(--color-acento);
}
.cookie-banner__btn--accept:hover { background: #113827; transform: translateY(-1px); }
.cookie-banner__btn--decline {
  background: transparent;
  color: #5a5a5a;
  border-color: rgba(90, 90, 90, 0.35);
}
.cookie-banner__btn--decline:hover { background: rgba(90, 90, 90, 0.07); }
.cookie-banner__btn--settings {
  font-size: 0.72rem;
  padding: 8px 16px;
  border: 1px dashed rgba(182, 139, 42, 0.45);
  color: var(--gold-2);
  background: transparent;
}
@media (max-width: 720px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    bottom: 12px;
    padding: 18px 18px;
  }
  .cookie-banner__actions { flex-direction: row; min-width: 0; width: 100%; }
  .cookie-banner__btn { flex: 1; padding: 10px 12px; font-size: 0.74rem; }
}

/* =========================================================
   Sección: Apoyar / Donaciones
   ========================================================= */
.support-band {
  padding: 54px 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(14, 47, 34, 0.05));
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.support-band__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.support-band__tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-2);
  padding: 7px 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(182, 139, 42, 0.15));
  border-left: 3px solid var(--gold-1);
  border-radius: 3px;
}
.support-band h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--color-acento);
  margin: 18px 0 10px;
  line-height: 1.25;
}
.support-band p {
  font-family: 'EB Garamond', serif;
  font-size: 1.08rem;
  color: #4a4a4a;
  max-width: 660px;
  margin: 0 auto 26px;
  line-height: 1.65;
}
.support-band__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: 'Cinzel', serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
.support-btn--kofi { background: #FF5E5B; color: #fff; border-color: #FF5E5B; }
.support-btn--kofi:hover { background: #E94D4A; }
.support-btn--bmc { background: #FFDD00; color: #000; border-color: #FFDD00; }
.support-btn--bmc:hover { background: #F0CF00; }
.support-btn--paypal { background: #0070ba; color: #fff; border-color: #0070ba; }
.support-btn--paypal:hover { background: #005ea0; }
.support-btn--nequi { background: #482D83; color: #fff; border-color: #482D83; }
.support-btn--nequi:hover { background: #3D256E; }

/* Diseño de Dos Columnas (Contenido + Barra Lateral) */
.layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    margin-top: 32px;
    align-items: start;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 140px; /* Debajo del header pegajoso */
}

/* Widgets de la Barra Lateral */
.widget {
    background: #ffffff;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.widget-title {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    color: var(--color-acento);
    margin: 0 0 16px;
    border-bottom: 2px solid var(--gold-1);
    padding-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Widget Libro Destacado (Monetización Directa) */
.widget-featured-book {
    text-align: center;
}

.widget-featured-book__cover {
    display: block;
    max-width: 130px;
    margin: 0 auto 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.widget-featured-book__cover:hover {
    transform: scale(1.05);
}

.widget-featured-book__cover img {
    width: 100%;
    display: block;
    height: auto;
}

.widget-featured-book__title {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: var(--texto-oscuro);
    margin: 0 0 8px;
}

.widget-featured-book__excerpt {
    font-family: 'EB Garamond', serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--muted);
    margin: 0 0 16px;
}

/* Widget Formulario de Suscripción */
.widget-subscribe p {
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.5;
    margin: 0 0 16px;
}

.widget-subscribe form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-subscribe input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    font-size: 0.95rem;
}

.widget-subscribe button {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.95rem;
    border-radius: 8px;
}

/* Botones de Compartir (Social Share) para Poemas */
.share-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.share-label {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fdfcf8;
    color: var(--color-acento);
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--gold-1);
    color: #1a1a1a;
    border-color: var(--gold-1);
    transform: translateY(-2px);
}

.share-btn--copy.success {
    background: #4caf50;
    color: #ffffff;
    border-color: #4caf50;
}

/* Publicidad Nativa (Anuncio Integrado en Inicio) */
.content-card--sponsored {
    border: 1px dashed var(--gold-1) !important;
    background: linear-gradient(135deg, #ffffff 0%, rgba(212, 175, 55, 0.03) 100%) !important;
}

.content-card--sponsored::after {
    content: "Patrocinado";
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    color: var(--gold-2);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(212, 175, 55, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

/* Poema Destacado en Inicio */
.featured-poem-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(182, 139, 42, 0.05) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.featured-poem-card {
    background: #ffffff;
    max-width: 750px;
    margin: 0 auto;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
    position: relative;
}

.featured-poem-card__badge {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    color: var(--gold-2);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.featured-poem-card__title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--color-acento);
    margin: 0 0 20px;
}

.featured-poem-card__body {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--texto-oscuro);
    margin-bottom: 24px;
}

/* Responsive Media Queries para Barra Lateral */
@media (max-width: 992px) {
    .layout-with-sidebar {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .sidebar-content {
        position: static;
        top: auto;
    }
    .ad-banner-728x90 {
        width: 320px;
        min-height: 100px;
    }
}

/* Activar anuncio sticky solo en móviles */
@media (max-width: 768px) {
    .ad-mobile-sticky {
        display: block;
    }
    body {
        padding-bottom: 80px; /* espacio para no ocultar contenido detrás del ad sticky */
    }
}