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

:root {
    --gold: #b8975a;
    --gold-light: #c9a96c;
    --gold-dark: #9a7d48;
    --cream: #f5f0ea;
    --cream-dark: #ede4d8;
    --cream-light: #faf7f3;
    --text-dark: #2c2420;
    --text-body: #4a4039;
    --text-muted: #7a6e63;
    --warm-bg: #e8ddd0;
    --section-alt: #f0e8dc;
    --border-light: #d4c4b0;
    --white: #ffffff;
    --green: #5a7a5e;
    --green-dark: #4a6850;
    --green-light: #6b8b6f;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-body);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   TOP BAR
======================================== */

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--text-dark);
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.top-bar__text {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.top-bar__btn {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--green);
    padding: 7px 20px;
    border: none;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.top-bar__btn:hover {
    background-color: var(--green-dark);
}

body {
    padding-top: 42px;
}

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

/* ========================================
   UTILITY
======================================== */

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

.container--narrow {
    max-width: 820px;
}

.section {
    padding: 100px 0;
}

.section--alt {
    background-color: var(--section-alt);
    background-image: url(../imagens/bg1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section--warm {
    background-color: var(--warm-bg);
}

.section--cream {
    background-color: var(--cream-light);
}

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

.flex-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-img img {
    width: 60px;
}

/* ========================================
   TYPOGRAPHY
======================================== */

.heading-display {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.heading-section {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.heading-sub {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.overline {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.body-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
}

.body-text--large {
    font-size: 1.2rem;
    line-height: 1.9;
}

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

.gold-line {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    margin: 30px auto;
}

.gold-line--left {
    margin-left: 0;
}

/* ========================================
   HERO
======================================== */

.hero {
    position: relative;
    padding: 100px 0 90px;
    background-color: var(--cream-light);
    overflow: hidden;
    background: url(../imagens/top-right.png) no-repeat top 15px right 15px #faf7f3;
    background-size: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 151, 90, 0.04) 0%, transparent 50%, rgba(184, 151, 90, 0.06) 100%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
}

.hero__content {
    text-align: left;
}

.hero__overline {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero__title em {
    font-style: italic;
    color: var(--gold-dark);
}

.hero__subtitle {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.hero__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 16px;
}

.hero__desc--accent {
    font-style: italic;
    color: var(--gold-dark);
    margin-bottom: 0;
}

.hero__cta-area {
    margin-top: 36px;
}

/* ---- Ebook Mockup ---- */

.hero__mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebook-mockup {
    position: relative;
    width: 380px;
    perspective: 900px;
}

.ebook-mockup__cover {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4.2;
    overflow: hidden;
    transform: rotateY(-8deg);
    transform-origin: left center;
    transition: transform 0.4s ease;
}

.ebook-mockup__cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback placeholder when no image */
.ebook-mockup__cover img[src=""]+.ebook-mockup__placeholder,
.ebook-mockup__cover img:not([src])+.ebook-mockup__placeholder,
.ebook-mockup__placeholder {
    display: flex;
}

.ebook-mockup__cover img:not([onerror]) {
    /* image present */
}

.ebook-mockup__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    text-align: center;
    z-index: 0;
}

.ebook-mockup__cover img {
    z-index: 1;
}

.ebook-mockup__label {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.ebook-mockup__book-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.ebook-mockup__author {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.ebook-mockup__spine {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 18px;
    background: linear-gradient(90deg, #c4b49e 0%, #d4c4ae 40%, #cbbda7 100%);
    border-radius: 3px 0 0 3px;
    z-index: 2;
    transform: rotateY(-8deg) translateX(-16px);
    transform-origin: right center;
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.ebook-mockup:hover .ebook-mockup__spine {
    transform: rotateY(-4deg) translateX(-16px);
}




/* ========================================
   CTA BUTTON
======================================== */

.btn {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--green);
    border: none;
    padding: 20px 52px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    position: relative;
}

.btn:hover {
    background-color: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(90, 122, 94, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.btn--large {
    padding: 22px 60px;
    font-size: 0.9rem;
}

/* ========================================
   INTRO / SUBHEADLINE
======================================== */

.intro {
    padding: 90px 0;
    background-color: var(--cream);
}

.intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.intro__text .body-text {
    margin-bottom: 16px;
}

.intro__image {
    position: relative;
}

.intro__image img {
    width: 100%;
    object-fit: cover;
}

.intro__image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--gold);
    opacity: 0.3;
    z-index: -1;
}

/* ========================================
   HIGHLIGHTS
======================================== */

.highlights {
    padding: 90px 0;
    background-color: var(--cream-light);
}

.highlights__list {
    list-style: none;
    max-width: 700px;
    margin: 40px auto 0;
}

.highlights__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1.08rem;
    line-height: 1.6;
    color: var(--text-body);
}

.highlights__item:last-child {
    border-bottom: none;
}

.highlights__icon {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    margin-top: 9px;
}

/* ========================================
   CONTEUDO / O QUE VOCE VAI APRENDER
======================================== */

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

.content-section__intro {
    max-width: 680px;
    margin: 0 auto 50px;
    text-align: center;
}

.learn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 860px;
    margin: 0 auto;
}

.learn-item {
    padding: 28px 30px;
    background-color: var(--cream-light);
    border-left: 3px solid var(--gold);
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-body);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.learn-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* ========================================
   5 LINGUAGENS
======================================== */

.languages {
    padding: 100px 0;
    background-color: var(--section-alt);
}

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

.language-card {
    text-align: center;
    padding: 40px 20px 36px;
    background-color: var(--cream-light);
    border-top: 3px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.language-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.language-card__title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.language-card__desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.languages__footer {
    margin-top: 50px;
    text-align: center;
}

.languages__footer .body-text {
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* ========================================
   PRA QUEM
======================================== */

.audience {
    padding: 100px 0;
    background-color: var(--cream-light);
}

.audience__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.audience__image {
    position: relative;
}

.audience__image img {
    width: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.audience__image::after {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    bottom: 16px;
    left: 16px;
    border: 1px solid var(--gold);
    opacity: 0.3;
    z-index: -1;
}

.audience__list {
    list-style: none;
    margin: 0;
}

.audience__item {
    position: relative;
    padding: 14px 0 14px 32px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-body);
}

.audience__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    width: 16px;
    height: 1px;
    background-color: var(--gold);
}

/* ========================================
   TRANSFORMACAO
======================================== */

.transformation {
    padding: 100px 0;
    background-color: var(--section-alt);
}

.transformation__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 50px;
    max-width: 800px;
    margin: 40px auto 0;
}

.transformation__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--text-body);
}

.transformation__check {
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 2px;
}

.transformation__quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-muted);
    text-align: center;
    max-width: 660px;
    margin: 50px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

/* ========================================
   O QUE VOCE RECEBE
======================================== */

.package {
    padding: 100px 0;
    background-color: var(--cream-light);
    background: url(../imagens/left.png) no-repeat left 15px top 15px, url(../imagens/right.png) no-repeat right 15px bottom 15px;
    background-size: 90px;
}

.package__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 40px auto 50px;
}

.package__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 28px;
    background-color: var(--cream);
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--text-body);
}

.package__check {
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 2px;
}

/* ========================================
   SOBRE A AUTORA
======================================== */

.about {
    padding: 100px 0;
    background-color: var(--warm-bg);
}

.about__grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
}

.about__image {
    width: 100%;
}


.about__text .overline {
    margin-bottom: 12px;
}

.about__text .heading-section {
    margin-bottom: 28px;
}

.about__text .body-text {
    color: var(--text-body);
    line-height: 1.9;
}

/* ========================================
   CTA FINAL
======================================== */

.cta-final {
    padding: 100px 0;
    background-color: var(--cream-light);
    text-align: center;
}

.cta-final__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 2.6rem;
    line-height: 1.25;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto 20px;
}

.cta-final__subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 44px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background-color: var(--text-dark);
    padding: 36px 0;
    text-align: center;
}

.footer__text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.05em;
}

/* ========================================
   CHAPTER INDEX (TABLE OF CONTENTS)
======================================== */

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

.toc__list {
    list-style: none;
    max-width: 620px;
    margin: 40px auto 0;
}

.toc__item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px solid rgba(184, 151, 90, 0.2);
    font-size: 1rem;
    color: var(--text-body);
}

.toc__item:last-child {
    border-bottom: none;
}

.toc__chapter {
    font-weight: 700;
    color: var(--text-dark);
    margin-right: 8px;
}

.toc__title {
    flex: 1;
}

/* ========================================
   RESPONSIVE
======================================== */

@media screen and (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr 400px;
        gap: 40px;
    }

    .hero__title {
        font-size: 2.6rem;
    }

    .ebook-mockup {
        width: 320px;
    }

    .ebook-mockup__book-title {
        font-size: 1.7rem;
    }

    .languages__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about__grid {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 28px;
    }

    .section {
        padding: 72px 0;
    }

    .top-bar {
        flex-direction: column;
        gap: 8px;
        padding: 8px 20px 10px;
    }

    body {
        padding-top: 62px;
    }

    .hero {
        padding: 70px 0 60px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero__content {
        text-align: center;
        order: 2;
    }

    .hero__mockup {
        order: 1;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .hero__cta-area {
        text-align: center;
    }

    .gold-line--left {
        margin-left: auto;
    }

    .ebook-mockup {
        width: 280px;
    }

    .heading-display {
        font-size: 2.4rem;
    }

    .heading-section {
        font-size: 1.7rem;
    }

    .intro__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro__image {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .languages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .audience__image {
        max-width: 420px;
        margin: 0 auto;
    }

    .audience__image::after {
        display: none;
    }

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

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

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .btn {
        padding: 18px 40px;
    }

    .btn--large {
        padding: 20px 48px;
    }

    .cta-final__title {
        font-size: 2.1rem;
    }

    .content-section,
    .languages,
    .audience,
    .transformation,
    .package,
    .about,
    .cta-final,
    .highlights,
    .toc,
    .intro {
        padding: 72px 0;
    }
}

@media screen and (max-width: 480px) {
    .top-bar__text {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 50px 0 46px;
    }

    .hero__grid {
        gap: 36px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__desc {
        font-size: 0.95rem;
    }

    .ebook-mockup {
        width: 240px;
    }

    .ebook-mockup__book-title {
        font-size: 1.4rem;
    }

    .ebook-mockup__label {
        font-size: 0.6rem;
    }

    .ebook-mockup__author {
        font-size: 0.7rem;
    }

    .heading-display {
        font-size: 2rem;
    }

    .heading-section {
        font-size: 1.45rem;
    }

    .heading-sub {
        font-size: 1.25rem;
    }

    .body-text {
        font-size: 1rem;
    }

    .overline {
        font-size: 0.72rem;
    }

    .languages__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .language-card {
        padding: 28px 20px 24px;
    }

    .btn {
        padding: 16px 32px;
        font-size: 0.78rem;
        width: 100%;
        text-align: center;
    }

    .btn--large {
        padding: 18px 36px;
        font-size: 0.82rem;
    }

    .cta-final__title {
        font-size: 1.7rem;
    }

    .about__image-wrapper::before {
        display: none;
    }

    .intro__image::after {
        display: none;
    }
}

@media(min-width: 1024px) {
    .package {
        padding: 100px 0;
        background-color: var(--cream-light);
        background: url(../imagens/left.png) no-repeat left 15px top 15px, url(../imagens/right.png) no-repeat right 15px bottom 15px;
        background-size: 120px;
    }

    .hero {
        background-size: 150px;
    }
}
/* ========================================
   PAYMENT SECTION
======================================== */
.payment {
    padding: 80px 0;
    background-color: var(--cream-dark);
}

.payment__box {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(44, 36, 32, 0.08);
}

.payment__title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin: 12px 0 20px;
}

.payment__pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 28px 0 36px;
}

.payment__price-old {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.payment__price-current {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.payment__price-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.payment__price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
}

.btn--payment {
    min-width: 280px;
    font-size: 1.05rem;
    padding: 18px 40px;
}

.payment__guarantee {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

@media (max-width: 600px) {
    .payment__box {
        padding: 36px 24px;
    }

    .payment__price {
        font-size: 2.4rem;
    }

    .btn--payment {
        min-width: unset;
        width: 100%;
    }
}

/* ========================================
   BONUS SECTION
======================================== */
.bonus {
    padding: 80px 0;
    background-color: #1e1510;
    text-align: center;
}

.bonus .overline {
    color: var(--gold-light);
}

.bonus__line {
    opacity: 0.5;
}

.bonus__title {
    color: var(--cream-light);
}

.bonus__desc {
    color: var(--cream-dark);
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(184, 151, 90, 0.7), 0 0 0 0 rgba(184, 151, 90, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(184, 151, 90, 0), 0 0 0 20px rgba(184, 151, 90, 0);
        transform: scale(1.05);
    }
}

.bonus__badge {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 10px 28px;
    border-radius: 2px;
    margin-bottom: 24px;
    animation: badge-pulse 2s ease-in-out infinite;
    position: relative;
}

.bonus__title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.bonus__desc {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.bonus__video {
    max-width: 380px;
    margin: 0 auto;
}

/* VIDEO SECTION */
.video-section {
    padding: 60px 0;
    background: #fff;
}

.video-section__wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.video-section__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bonus__iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 portrait */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.bonus__iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 600px) {
    .bonus__title {
        font-size: 1.6rem;
    }
}
