/* =========================================================
   MILAPHYSIO E-BOOK
   ebook.css
   SEITE 1–31
   MOBILE FIRST · RESPONSIVE · 9:16
========================================================= */


/* =========================================================
   01 — VARIÁVEIS
========================================================= */

:root {
    --cream: #f7f0e6;
    --cream-dark: #eee4d7;

    --green: #104f45;
    --green-dark: #173f38;

    --gold: #cda347;
    --gold-light: #e4c77d;

    --text: #303a37;
    --muted: #77706a;

    --white: #ffffff;

    --shadow:
        0 12px 30px rgba(0, 0, 0, 0.10);

    --page-width: 100%;
    --page-padding: 7%;
}


/* =========================================================
   02 — RESET
========================================================= */

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

html {
    margin: 0;
    padding: 0;
    background: #d8d5cf;
}

body {
    margin: 0;
    padding: 0;

    background: #d8d5cf;

    color: var(--text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3,
h4,
p,
ol,
ul {
    margin-top: 0;
}


/* =========================================================
   03 — E-BOOK
========================================================= */

.ebook {
    width: 100%;
    margin: 0 auto;
}


/* =========================================================
   04 — PÁGINA
   MOBILE FIRST — RESPONSIVA
========================================================= */

.page {
    position: relative;

    width: 100%;
    min-height: 0;
    height: auto;

    padding: 7%;

    background: var(--cream);
    color: var(--text);

    /*
     * A página cresce conforme o conteúdo.
     * NÃO usar aspect-ratio.
     * NÃO usar height fixa.
     */
    
    page-break-after: always;
    break-after: page;
}


/* =========================================================
   05 — LINHA DOURADA SUPERIOR
========================================================= */

.page::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 19%;
    height: 0.42%;

    min-height: 3px;

    background: var(--gold);
}


/* =========================================================
   06 — HEADER
========================================================= */

.page-header {
    position: relative;

    width: 100%;

    min-height: 7%;

    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 3%;
}

.page-label,
.section-number {
    display: inline-flex;

    align-items: center;

    min-height: 2.5rem;

    padding:
        0.55rem
        1rem;

    border-radius:
        0
        0.75rem
        0.75rem
        0;

    background: var(--green);

    color: var(--white);

    font-size:
        clamp(0.6rem, 1.5vw, 1rem);

    font-weight: 800;

    letter-spacing: 0.12em;

    line-height: 1;

    white-space: nowrap;
}

.page-logo {
    display: block;

    width: 15%;

    max-width: 155px;

    height: auto;

    object-fit: contain;

    margin-left: auto;
}


/* =========================================================
   07 — TIPOGRAFIA
========================================================= */

.page h1,
.page h2,
.page h3,
.page h4 {
    font-family:
        Arial,
        Helvetica,
        sans-serif;
}

.page h1 {
    color: var(--green);

    font-size:
        clamp(2rem, 6vw, 4.5rem);

    font-weight: 800;

    line-height: 0.95;

    letter-spacing: -0.04em;
}

.page h2 {
    max-width: 90%;

    margin-bottom: 2%;

    color: var(--green);

    font-size:
        clamp(1.8rem, 5.4vw, 4.5rem);

    font-weight: 800;

    line-height: 0.96;

    letter-spacing: -0.045em;
}

.page h2 em {
    color: var(--gold);

    font-style: normal;
}

.page h3 {
    margin-top: 3%;
    margin-bottom: 2%;

    color: var(--green);

    font-size:
        clamp(0.8rem, 1.8vw, 1.3rem);

    font-weight: 800;

    letter-spacing: 0.08em;

    line-height: 1.15;
}

.page h4 {
    margin-bottom: 2%;

    color: var(--green);

    font-size:
        clamp(0.75rem, 1.7vw, 1.2rem);

    line-height: 1.15;
}

.page p {
    margin-bottom: 3%;

    color: var(--text);

    font-size:
        clamp(0.7rem, 1.7vw, 1.2rem);

    line-height: 1.45;
}

.page .lead {
    max-width: 88%;

    margin-bottom: 3%;

    font-size:
        clamp(0.85rem, 2vw, 1.4rem);

    line-height: 1.4;

    font-weight: 500;
}


/* =========================================================
   08 — LINHAS DOURADAS
========================================================= */

.gold-line {
    width: 18%;

    height: 4px;

    margin:
        2.5%
        0
        3.5%;

    background: var(--gold);
}


/* =========================================================
   09 — FOOTER
========================================================= */

.page-footer {
    position: absolute;

    left: 7%;
    right: 7%;
    bottom: 4%;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    padding-top: 2.5%;

    border-top:
        1px solid
        rgba(205, 163, 71, 0.55);

    color: var(--muted);

    font-size:
        clamp(0.5rem, 1.1vw, 0.8rem);

    line-height: 1.2;
}

.page-footer b {
    color: var(--green);

    font-weight: 800;
}


/* =========================================================
   10 — REGRA GERAL DAS FOTOS
   TODAS AS FOTOS SÃO 9:16
========================================================= */

.hero-photo,
.exercise-photo,
.rounded-photo,
.portrait {
    display: block;

    aspect-ratio: 9 / 16;

    height: auto;

    border:
        2px solid
        var(--gold);

    background: var(--cream-dark);

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   11 — HERO PHOTO
========================================================= */

.hero-photo {
    width: 42%;

    margin:
        3%
        auto
        4%;
}


/* =========================================================
   12 — EXERCISE PHOTO
   IMPORTANTE:
   A FOTO FICA DENTRO DE .exercise-photo-wrap
========================================================= */

.exercise-photo {
    width: 100%;

    margin: 0;

    border-radius: 4%;
}


/* =========================================================
   13 — FOTO ARREDONDADA
========================================================= */

.rounded-photo {
    width: 42%;

    margin: 0 auto;

    border-radius:
        14%
        14%
        0
        0;
}


/* =========================================================
   14 — RETRATO
========================================================= */

.portrait {
    width: 38%;

    margin:
        3%
        auto
        4%;

    border-radius: 50%;
}

/* =========================================================
   15 — CAPA
   MOBILE FIRST — RESPONSIVA
========================================================= */

.cover {

    position: relative;

    width: 100%;

    min-height: 100vh;

    box-sizing: border-box;

    padding:
        6%
        6%
        5%;

    display: flex;

    flex-direction: column;

    overflow: hidden;
}


/* ---------------------------------------------------------
   LOGO DA CAPA
--------------------------------------------------------- */

.cover .page-logo {

    width: 17%;

    height: auto;

    max-width: 140px;
}


/* ---------------------------------------------------------
   CONTEÚDO PRINCIPAL
--------------------------------------------------------- */

.cover-content {

    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 4%;

    margin-top: 5%;
}


/* ---------------------------------------------------------
   TEXTO DA CAPA
--------------------------------------------------------- */

.cover-copy {

    position: relative;

    z-index: 2;

    width: 100%;

    margin: 0;

    padding: 0;
}


.cover-copy .eyebrow {

    margin:
        0
        0
        3%;

    color: var(--gold);

    font-size:
        clamp(0.65rem, 2.8vw, 1rem);

    font-weight: 800;

    letter-spacing: 0.12em;

    line-height: 1.2;
}


.cover h1 {

    width: 100%;

    max-width: 100%;

    margin: 0;

    font-size:
        clamp(2rem, 9vw, 4.8rem);

    line-height: 0.95;

    letter-spacing: -0.02em;
}


.cover h1 span {

    color: var(--gold);
}


.cover-copy .gold-line {

    width: 80px;

    height: 3px;

    margin:
        5%
        0;

    background: var(--gold);
}


.cover-copy h2 {

    width: 100%;

    max-width: 100%;

    margin:
        0
        0
        4%;

    color: var(--green);

    font-size:
        clamp(0.95rem, 4vw, 1.5rem);

    line-height: 1.25;

    letter-spacing: 0;
}


.cover-copy .cover-description {

    width: 100%;

    max-width: 100%;

    margin: 0;

    font-size:
        clamp(0.75rem, 3vw, 1rem);

    line-height: 1.45;
}


/* =========================================================
   16 — FOTO DA CAPA
========================================================= */

.cover-photo {

    /* IMPORTANTE:
       anula o antigo position:absolute */

    position: relative;

    top: auto;
    left: auto;

    width: 100%;

    height: auto;

    max-height: none;

    aspect-ratio: auto;

    overflow: visible;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0;

    padding: 0;

    background: transparent;

    border: 0;

    border-radius: 0;
}


.cover-photo img {

    display: block;

    width: min(58%, 240px);

    height: auto;

    aspect-ratio: 9 / 16;

    object-fit: cover;

    object-position: center;

    margin: 0 auto;

    border:
        2px solid
        var(--gold);

    border-radius: 12px;
}


/* =========================================================
   17 — BENEFÍCIOS
========================================================= */

.cover .benefits {

    /* IMPORTANTE:
       anula o antigo position:absolute */

    position: relative;

    left: auto;
    right: auto;
    bottom: auto;

    width: 100%;

    margin:
        5%
        0
        0;

    padding: 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 3%;

    box-sizing: border-box;
}


.cover .benefit-item {

    min-width: 0;

    min-height: 65px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    gap: 6px;

    padding:
        8px
        4px;

    box-sizing: border-box;

    border:
        1px solid
        rgba(207, 163, 58, 0.35);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.45);
}


.cover .benefit-item b {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 30px;

    height: 30px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--gold);

    color: white;

    font-size: 0.7rem;

    line-height: 1;
}


.cover .benefit-item span {

    color: var(--green);

    font-size:
        clamp(0.55rem, 2.4vw, 0.78rem);

    font-weight: 700;

    line-height: 1.2;

    text-align: center;
}


/* =========================================================
   FOOTER DA CAPA
========================================================= */

.cover .page-footer {

    position: relative;

    left: auto;
    right: auto;
    bottom: auto;

    width: 100%;

    margin-top: 5%;

    padding-top: 3%;

    border-top:
        1px solid
        rgba(207, 163, 58, 0.45);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    font-size:
        clamp(0.58rem, 2.4vw, 0.8rem);

    box-sizing: border-box;
}


.cover .page-footer b {

    color: var(--green);

    white-space: nowrap;
}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media screen and (max-width: 420px) {

    .cover {

        min-height: 100vh;

        padding:
            6%
            5%
            4%;
    }


    .cover-content {

        gap: 3%;
    }


    .cover h1 {

        font-size: 9vw;
    }


    .cover-copy h2 {

        font-size: 4vw;

        line-height: 1.2;
    }


    .cover-copy .cover-description {

        font-size: 3vw;

        line-height: 1.4;
    }


    .cover-photo img {

        width: 45%;

        max-width: 190px;

        aspect-ratio: 9 / 16;
    }


    .cover .benefits {

        gap: 2%;
    }


    .cover .benefit-item {

        min-height: 58px;

        padding:
            6px
            2px;
    }


    .cover .benefit-item b {

        width: 26px;

        height: 26px;

        font-size: 0.62rem;
    }


    .cover .benefit-item span {

        font-size: 2.4vw;
    }


    .cover .page-footer {

        font-size: 2.4vw;
    }
}


/* =========================================================
   TABLET / DESKTOP
========================================================= */

@media screen and (min-width: 701px) {

    .cover {

        min-height: 100vh;

        padding:
            5%
            6%
            4%;
    }


    .cover-content {

        display: grid;

        grid-template-columns:
            1fr
            38%;

        gap: 6%;

        align-items: center;
    }


    .cover-copy {

        grid-column: 1;
    }


    .cover-photo {

        grid-column: 2;

        grid-row: 1;

        align-self: center;
    }


    .cover-photo img {

        width: 100%;

        max-width: 360px;
    }


    .cover .benefits {

        margin-top: 4%;
    }


    .cover .benefit-item {

        min-height: 75px;
    }
}

/* =========================================================
   18 — SPLIT
========================================================= */

.split {
    display: grid;

    grid-template-columns: 1fr;

    gap: 4%;

    align-items: start;
}


/* =========================================================
   19 — PRAXIS TIP
========================================================= */

.tip {
    width: 100%;

    margin-top: 3%;

    padding:
        3.5%
        4%;

    border-radius: 1.2rem;

    background: var(--green);

    color: var(--white);

    box-shadow: var(--shadow);

    font-size:
        clamp(0.6rem, 1.35vw, 1rem);

    line-height: 1.4;
}

.tip b {
    display: block;

    margin-bottom: 1.5%;

    color: var(--gold);

    font-size: 0.85em;

    letter-spacing: 0.1em;
}


/* =========================================================
   20 — SEITE 3
   INHALTSVERZEICHNIS
   PADRÃO VISUAL PRESERVADO
========================================================= */

.contents-page {
    position: relative;
}

.contents-page h2 {
    margin-top: 2%;
}

.contents-page > p {
    max-width: 62%;

    margin-bottom: 4%;
}

.contents-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 4%;
}

.contents-grid ol {
    margin: 0;
    padding: 0;

    list-style: none;

    counter-reset: contents;
}

.contents-grid li {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 7%;

    padding:
        2.5%
        0
        2.5%
        12%;

    border-bottom:
        1px solid
        rgba(205, 163, 71, 0.55);

    color: var(--green);

    font-size:
        clamp(0.7rem, 1.55vw, 1.1rem);

    font-weight: 700;

    line-height: 1.2;
}

.contents-grid li::before {
    counter-increment: contents;

    content:
        counter(contents, decimal-leading-zero);

    position: absolute;

    left: 0;

    width: 9%;

    aspect-ratio: 1;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gold);

    color: var(--white);

    font-size: 0.8em;

    font-weight: 800;
}

.contents-grid > img {
    width: 100%;

    aspect-ratio: 9 / 16;

    height: auto;

    object-fit: cover;

    border:
        2px solid
        var(--gold);

    border-radius:
        18%
        18%
        0
        0;
}


/* =========================================================
   21 — CARDS
========================================================= */

.cards {
    display: grid;

    gap: 2.5%;

    margin-top: 3%;
}

.cards article {
    padding: 4%;

    border:
        1px solid
        rgba(205, 163, 71, 0.5);

    border-radius: 1rem;

    background:
        rgba(255, 255, 255, 0.45);
}

.cards article > b {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 2rem;
    height: 2rem;

    margin-bottom: 3%;

    border-radius: 50%;

    background: var(--gold);

    color: var(--white);

    font-size: 0.75rem;
}

.cards article p {
    margin-bottom: 0;

    font-size:
        clamp(0.6rem, 1.25vw, 0.9rem);
}

.cards.four,
.cards.six,
.cards.eight {
    grid-template-columns:
        repeat(2, 1fr);
}

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


/* =========================================================
   22 — INFO GRID
========================================================= */

.info-grid {
    display: grid;

    gap: 3%;

    margin-top: 3%;
}

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

.info-grid article {
    padding: 4%;

    border-left:
        3px solid
        var(--gold);

    background:
        rgba(255, 255, 255, 0.35);
}

.info-grid p {
    margin-bottom: 0;

    font-size:
        clamp(0.6rem, 1.2vw, 0.9rem);
}


/* =========================================================
   23 — NUMBER LIST
========================================================= */

.number-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 2.5%;
}

.number-list article {
    position: relative;

    padding:
        4%
        4%
        4%
        14%;

    border-bottom:
        1px solid
        rgba(205, 163, 71, 0.5);
}

.number-list article > b {
    position: absolute;

    left: 0;
    top: 4%;

    color: var(--gold);

    font-size:
        clamp(0.8rem, 1.5vw, 1.1rem);
}

.number-list h3 {
    margin-top: 0;

    margin-bottom: 2%;

    font-size:
        clamp(0.7rem, 1.4vw, 1rem);

    letter-spacing: 0;
}

.number-list p {
    margin-bottom: 0;

    font-size:
        clamp(0.58rem, 1.15vw, 0.85rem);
}


/* =========================================================
   24 — CHECKLIST
========================================================= */

.checklist,
.daily-check {
    display: grid;

    gap: 2%;

    margin-top: 3%;
}

.checklist label,
.daily-check label {
    display: block;

    padding:
        3%
        4%;

    border-radius: 0.8rem;

    background:
        rgba(16, 79, 69, 0.08);

    color: var(--green);

    font-size:
        clamp(0.65rem, 1.45vw, 1rem);

    font-weight: 700;
}


/* =========================================================
   25 — TIMELINE
========================================================= */

.timeline {
    display: grid;

    gap: 2.5%;

    margin-top: 3%;
}

.timeline article {
    display: grid;

    grid-template-columns:
        25%
        1fr;

    gap: 4%;

    align-items: center;

    padding: 3%;

    border-left:
        4px solid
        var(--gold);

    border-radius: 0.8rem;

    background:
        rgba(255, 255, 255, 0.5);
}

.timeline b {
    color: var(--gold);

    font-size:
        clamp(0.65rem, 1.35vw, 0.95rem);
}

.timeline span {
    color: var(--green);

    font-size:
        clamp(0.65rem, 1.3vw, 0.95rem);

    font-weight: 700;
}


/* =========================================================
   26 — ÜBUNGEN
   FOTO + QR CODE
   PADRÃO ÚNICO · FOTO 9:16
========================================================= */

.exercise-media {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4%;
    margin: 4% 0 5%;
    overflow: visible;
}


/* =========================================================
   27 — CONTAINER DA FOTO
========================================================= */

.exercise-photo-wrap {
    width: 62%;
    flex: 0 0 62%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}


/* =========================================================
   28 — FOTO DOS EXERCÍCIOS
   SEMPRE 9:16
========================================================= */

.exercise-media .exercise-photo {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
    border: 2px solid var(--gold);
    border-radius: 4%;
}


/* =========================================================
   29 — QR CODE
========================================================= */

.qr-box {
    width: 25%;

    flex: 0 0 25%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 4%;

    background: var(--white);

    border:
        2px solid
        var(--gold);

    border-radius: 16px;

    box-shadow:
        0 8px 22px
        rgba(0, 0, 0, 0.08);
}

.qr-box span {
    display: block;

    margin-bottom: 10%;

    color: var(--green);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        clamp(9px, 1.4vw, 16px);

    font-weight: 800;

    letter-spacing: 1.2px;

    line-height: 1.1;

    text-align: center;
}

.qr-box img {
    display: block;

    width: 100%;

    height: auto;

    max-width: 150px;

    margin: 0;

    object-fit: contain;
}


/* =========================================================
   30 — BENEFIT GRID DAS ÜBUNGEN
========================================================= */

.benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 3%;

    margin:
        3%
        0
        4%;
}

.benefit-grid article {
    padding: 4%;

    border:
        1px solid
        rgba(205, 163, 71, 0.5);

    border-radius: 1rem;

    background:
        rgba(255, 255, 255, 0.45);
}

.benefit-grid article > b {
    color: var(--gold);

    font-size:
        clamp(0.7rem, 1.3vw, 1rem);

    font-weight: 800;
}

.benefit-grid h4 {
    margin-top: 4%;

    margin-bottom: 3%;

    color: var(--green);

    font-size:
        clamp(0.65rem, 1.3vw, 1rem);
}

.benefit-grid p {
    margin-bottom: 0;

    font-size:
        clamp(0.55rem, 1.05vw, 0.8rem);

    line-height: 1.35;
}


/* =========================================================
   31 — ÜBUNG SCHRITTE
========================================================= */

.steps {
    margin:
        2%
        0
        3%;

    padding-left: 7%;
}

.steps li {
    margin-bottom: 2.5%;

    color: var(--text);

    font-size:
        clamp(0.6rem, 1.3vw, 0.95rem);

    line-height: 1.35;
}


/* =========================================================
   32 — DOSIERUNG
========================================================= */

.dosage {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 3%;

    margin:
        3%
        0;

    padding:
        3%
        4%;

    border:
        1px solid
        rgba(205, 163, 71, 0.55);

    border-radius: 1rem;

    background:
        rgba(255, 255, 255, 0.55);
}

.dosage b {
    color: var(--gold);

    font-size:
        clamp(0.75rem, 1.5vw, 1.1rem);
}

.dosage span {
    color: var(--green);

    font-size:
        clamp(0.55rem, 1.15vw, 0.85rem);

    font-weight: 700;
}


/* =========================================================
   33 — HINWEIS ÜBUNG
========================================================= */

.exercise-note {
    margin:
        3%
        0;

    padding:
        3%
        4%;

    border-left:
        4px solid
        var(--gold);

    border-radius: 0.8rem;

    background:
        rgba(205, 163, 71, 0.10);
}

.exercise-note strong {
    display: block;

    margin-bottom: 1.5%;

    color: var(--green);

    font-size:
        clamp(0.6rem, 1.2vw, 0.9rem);

    letter-spacing: 0.08em;
}

.exercise-note p {
    margin-bottom: 0;

    font-size:
        clamp(0.55rem, 1.1vw, 0.8rem);

    line-height: 1.35;
}


/* =========================================================
   34 — PLAN
========================================================= */

.plan-box {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 2.5%;

    margin-top: 3%;
}

.plan-box > div {
    padding: 4%;

    border:
        1px solid
        rgba(205, 163, 71, 0.5);

    border-radius: 1rem;

    background:
        rgba(255, 255, 255, 0.5);
}

.plan-box b {
    display: block;

    margin-bottom: 2%;

    color: var(--gold);

    font-size:
        clamp(0.8rem, 1.5vw, 1.1rem);
}

.plan-box span {
    display: block;

    color: var(--green);

    font-size:
        clamp(0.6rem, 1.2vw, 0.9rem);

    line-height: 1.3;
}


/* =========================================================
   35 — THREE COLUMNS
========================================================= */

.three-columns {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 3%;

    margin-top: 3%;
}

.three-columns article {
    padding: 5%;

    border-top:
        4px solid
        var(--gold);

    border-radius: 1rem;

    background:
        rgba(255, 255, 255, 0.5);
}

.three-columns b {
    color: var(--gold);
}

.three-columns h4 {
    margin-top: 8%;
}

.three-columns p {
    margin-bottom: 0;

    font-size:
        clamp(0.55rem, 1.1vw, 0.8rem);
}


/* =========================================================
   36 — WARNING
========================================================= */

.warning-box {
    margin-top: 3%;

    padding: 5%;

    border-left:
        5px solid
        var(--gold);

    border-radius: 1rem;

    background:
        rgba(205, 163, 71, 0.10);
}

.warning-box h3 {
    margin-top: 0;
}

.warning-box ul {
    margin: 0;

    padding-left: 6%;
}

.warning-box li {
    margin-bottom: 2%;

    font-size:
        clamp(0.6rem, 1.25vw, 0.9rem);

    line-height: 1.35;
}


/* =========================================================
   37 — MYTHEN
========================================================= */

.myths {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 3%;
}

.myths article {
    padding: 5%;

    border-top:
        4px solid
        var(--gold);

    border-radius: 1rem;

    background:
        rgba(255, 255, 255, 0.45);
}

.myths b {
    color: var(--gold);

    font-size:
        clamp(0.55rem, 1vw, 0.75rem);

    letter-spacing: 0.1em;
}

.myths h3 {
    margin-top: 4%;

    font-size:
        clamp(0.7rem, 1.35vw, 1rem);

    letter-spacing: 0;
}

.myths p {
    margin-bottom: 0;

    font-size:
        clamp(0.55rem, 1.1vw, 0.8rem);
}


/* =========================================================
   38 — FAQ
========================================================= */

.faq {
    display: grid;

    gap: 1.5%;

    margin-top: 3%;
}

.faq details {
    padding:
        3%
        4%;

    border-bottom:
        1px solid
        rgba(205, 163, 71, 0.55);

    background:
        rgba(255, 255, 255, 0.35);
}

.faq summary {
    cursor: pointer;

    color: var(--green);

    font-size:
        clamp(0.65rem, 1.35vw, 1rem);

    font-weight: 800;
}

.faq p {
    margin:
        3%
        0
        0;

    font-size:
        clamp(0.58rem, 1.1vw, 0.8rem);
}


/* =========================================================
   39 — TABELA
========================================================= */

.progress {
    width: 100%;

    margin-top: 3%;

    border-collapse: collapse;

    font-size:
        clamp(0.55rem, 1.1vw, 0.8rem);
}

.progress th {
    padding: 3%;

    background: var(--green);

    color: var(--white);

    text-align: left;
}

.progress td {
    padding: 3%;

    border-bottom:
        1px solid
        rgba(205, 163, 71, 0.45);
}


/* =========================================================
   40 — QUOTE
========================================================= */

.quote {
    margin:
        5%
        0;

    padding: 6%;

    border-left:
        6px solid
        var(--gold);

    color: var(--green);

    font-size:
        clamp(1rem, 2.2vw, 1.6rem);

    font-weight: 700;

    font-style: italic;

    line-height: 1.35;
}

.small-note {
    color: var(--muted) !important;

    font-size:
        clamp(0.55rem, 1vw, 0.75rem) !important;
}


/* =========================================================
   41 — ABOUT
========================================================= */

.about > p {
    max-width: 82%;
}


/* =========================================================
   42 — CONTACT
========================================================= */

.contact-box {
    margin-top: 4%;

    padding: 6%;

    border-radius: 1.2rem;

    background: var(--green);

    color: var(--white);

    box-shadow: var(--shadow);
}

.contact-box h3 {
    margin-top: 0;

    color: var(--gold);
}

.contact-box p {
    color: var(--white);
}

.contact-box b {
    color: var(--gold);
}


/* =========================================================
   43 — FINAL CTA
========================================================= */

.final-cta {
    display: grid;

    grid-template-columns:
        1fr
        24%;

    gap: 5%;

    align-items: center;

    margin-top: 4%;

    padding: 5%;

    border-radius: 1.2rem;

    background: var(--green);

    color: var(--white);

    box-shadow: var(--shadow);
}

.final-cta h3 {
    margin-top: 0;

    color: var(--gold);
}

.final-cta p {
    color: var(--white);

    font-size:
        clamp(0.6rem, 1.2vw, 0.85rem);
}

.final-cta img {
    width: 100%;

    aspect-ratio: 1 / 1;

    height: auto;

    object-fit: contain;

    padding: 5%;

    background: var(--white);

    border-radius: 0.6rem;
}

.closing {
    max-width: 75%;

    margin-top: 4%;

    color: var(--green) !important;

    font-size:
        clamp(0.75rem, 1.6vw, 1.15rem) !important;

    font-weight: 500;
}

.signature {
    color: var(--gold) !important;

    font-size:
        clamp(0.8rem, 1.7vw, 1.2rem) !important;

    font-weight: 700;
}


/* =========================================================
   44 — MOBILE
========================================================= */

@media screen and (max-width: 700px) {

    html,
    body {
        background: var(--cream);
    }

    .ebook {
        width: 100%;
    }

  

    .page h2 {
        max-width: 90%;
    }

    .page p {
        font-size: 3vw;
    }

    .page .lead {
        font-size: 3.3vw;
    }

    .page-logo {
        width: 15%;
    }


    /* -----------------------------------------
       ÜBUNG FOTO + QR
    ----------------------------------------- */

    .exercise-media {
        width: 100%;

        gap: 4%;

        margin:
            4%
            0
            5%;
    }

    .exercise-photo-wrap {
        width: 64%;

        flex: 0 0 64%;
    }

    .exercise-media .exercise-photo {
        width: 100%;

        aspect-ratio: 9 / 16;

        height: auto;
    }

    .qr-box {
        width: 28%;

        flex: 0 0 28%;

        padding: 3%;

        border-radius: 12px;
    }

    .qr-box span {
        margin-bottom: 8%;

        font-size: 9px;

        letter-spacing: 1px;
    }

    .qr-box img {
        width: 100%;

        max-width: 100%;
    }


    /* -----------------------------------------
       BENEFITS
    ----------------------------------------- */

    .benefit-grid {
        grid-template-columns: 1fr;

        gap: 2%;
    }

    .benefit-grid article {
        padding: 3%;
    }


    /* -----------------------------------------
       GENERAL GRIDS
    ----------------------------------------- */

    .cards.four,
    .cards.six,
    .cards.eight,
    .cards.three,
    .info-grid.three,
    .three-columns,
    .myths {
        grid-template-columns: 1fr 1fr;
    }


    .final-cta {
        grid-template-columns:
            1fr
            24%;
    }
}


/* =========================================================
   45 — TELAS MUITO PEQUENAS
   MOBILE FIRST — RESPONSIVO
========================================================= */

@media screen and (max-width: 420px) {

    /* -----------------------------------------------------
       PÁGINA
    ----------------------------------------------------- */

    .page {
        width: 100%;
        min-height: 0;
        height: auto;

        padding: 6%;

        /*
         * A página cresce conforme o conteúdo.
         * Não usar aspect-ratio ou altura fixa.
         */
        overflow: visible;

        box-sizing: border-box;
    }


    /* -----------------------------------------------------
       TÍTULOS
    ----------------------------------------------------- */

    .page h2 {
        font-size: 7vw;
        line-height: 1.05;
        margin-bottom: 3%;
    }


    .page h3 {
        line-height: 1.2;
    }


    /* -----------------------------------------------------
       TEXTOS
    ----------------------------------------------------- */

    .page p {
        font-size: 2.7vw;
        line-height: 1.45;
    }


    .page .lead {
        font-size: 3vw;
        line-height: 1.45;
    }


    .page .small-note {
        font-size: 2.5vw;
        line-height: 1.4;
    }


    /* -----------------------------------------------------
       IMAGENS
    ----------------------------------------------------- */

    .page img {
        max-width: 100%;
        height: auto;
    }


    .hero-photo,
    .exercise-photo,
    .rounded-photo,
    .portrait {
        max-width: 100%;
        height: auto;
    }


    /* -----------------------------------------------------
       EXERCÍCIOS
    ----------------------------------------------------- */

    .exercise-media {
        display: flex;
        flex-wrap: wrap;
        gap: 3%;
    }


    .exercise-photo-wrap {
        width: 65%;
        flex-basis: 65%;
        max-width: 100%;
    }


    /* -----------------------------------------------------
       QR CODE
    ----------------------------------------------------- */

    .qr-box {
        width: 28%;
        flex-basis: 28%;
        max-width: 100%;

        padding: 2.5%;
        box-sizing: border-box;
    }


    .qr-box img {
        max-width: 100%;
        height: auto;
    }


    .qr-box span {
        font-size: 7px;
        line-height: 1.2;
        letter-spacing: 0.7px;
    }


    /* -----------------------------------------------------
       TIP / HINWEIS
    ----------------------------------------------------- */

    .tip {
        width: 100%;
        padding: 3%;
        box-sizing: border-box;
    }


    .tip p {
        margin-bottom: 0;
    }


    /* -----------------------------------------------------
       GRIDS
       Evita elementos ultrapassando a largura
    ----------------------------------------------------- */

    .info-grid,
    .benefits,
    .pricing-grid,
    .conditions-grid,
    .services-grid,
    .process-grid,
    .approach-grid,
    .why-grid,
    .about-grid,
    .footer-grid,
    .product-hero-grid {
        max-width: 100%;
    }


    /* -----------------------------------------------------
       TABELAS
    ----------------------------------------------------- */

    table {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }


    /* -----------------------------------------------------
       ELEMENTOS INTERATIVOS
    ----------------------------------------------------- */

    button,
    input,
    textarea,
    select {
        max-width: 100%;
        box-sizing: border-box;
    }

}

/* =========================================================
   46 — DESKTOP
========================================================= */

@media screen and (min-width: 701px) {

    .ebook {
        width:
            min(100%, 1080px);
    }

    .split {
        grid-template-columns:
            1fr
            42%;
    }

    .contents-grid {
        grid-template-columns:
            58%
            36%;
    }

    /* -----------------------------------------
       ÜBUNG FOTO + QR
    ----------------------------------------- */

    .exercise-media {
        width: 100%;

        gap: 5%;
    }

    .exercise-photo-wrap {
        width: 62%;

        flex-basis: 62%;
    }

    .exercise-media .exercise-photo {
        width: 100%;

        aspect-ratio: 9 / 16;

        height: auto;
    }

    .qr-box {
        width: 25%;

        flex-basis: 25%;
    }

    /* -----------------------------------------
       OUTROS ELEMENTOS
       RESPONSIVO — TELAS MUITO PEQUENAS
    ----------------------------------------- */

    .hero-photo {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        box-sizing: border-box;
    }


    .rounded-photo {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        box-sizing: border-box;
    }


    .portrait {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        box-sizing: border-box;
    }


    /*
     * As fotos continuam preservando
     * sua proporção 9:16.
     * A página permanece responsiva.
     */

    .hero-photo,
    .rounded-photo,
    .portrait {
        object-fit: contain;
    }

}

/* =========================================================
   47 — PRINT / PDF
   1080 × 1920
========================================================= */

@media print {

    @page {
        size: 1080px 1920px;

        margin: 0;
    }

    html,
    body {
        width: 1080px;

        margin: 0;
        padding: 0;

        background: var(--cream);
    }

    .ebook {
        width: 1080px;

        margin: 0;
    }

    .page {
        width: 1080px;
        height: 1920px;

        min-height: 1920px;
        max-height: 1920px;

        aspect-ratio: auto;

        padding:
            135px
            76px
            96px;

        overflow: hidden;

        page-break-after: always;
        break-after: page;

        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .page:last-child {
        page-break-after: auto;
        break-after: auto;
    }


    /* -----------------------------------------
       LINHA SUPERIOR
    ----------------------------------------- */

    .page::before {
        width: 205px;

        height: 8px;
    }


    /* -----------------------------------------
       HEADER
    ----------------------------------------- */

    .page-header {
        min-height: 120px;

        margin-bottom: 40px;
    }

    .page-label,
    .section-number {
        min-height: 50px;

        padding:
            14px
            24px;

        font-size: 18px;
    }

    .page-logo {
        width: 155px;

        max-width: 155px;
    }


    /* -----------------------------------------
       TIPOGRAFIA
    ----------------------------------------- */

    .page h1 {
        font-size: 72px;
    }

    .page h2 {
        font-size: 68px;
    }

    .page h3 {
        font-size: 20px;
    }

    .page h4 {
        font-size: 19px;
    }

    .page p {
        font-size: 21px;
    }

    .page .lead {
        font-size: 25px;
    }

    .gold-line {
        width: 200px;

        height: 5px;

        margin:
            28px
            0
            35px;
    }


    /* -----------------------------------------
       FOOTER
    ----------------------------------------- */

    .page-footer {
        left: 76px;
        right: 76px;

        bottom: 55px;

        font-size: 15px;
    }


    /* -----------------------------------------
       FOTOS — TODAS 9:16
    ----------------------------------------- */

    .hero-photo {
        width: 420px;

        height: auto;

        aspect-ratio: 9 / 16;

        max-width: 420px;
    }

    .rounded-photo {
        width: 420px;

        height: auto;

        aspect-ratio: 9 / 16;

        max-width: 420px;
    }

    .portrait {
        width: 380px;

        height: auto;

        aspect-ratio: 9 / 16;

        max-width: 380px;
    }


    /* -----------------------------------------
       CAPA
    ----------------------------------------- */

   /* -----------------------------------------
   CAPA — PDF
   AJUSTE FINAL
----------------------------------------- */

.cover {
    position: relative;

    width: 1080px;
    height: 1920px;
    min-height: 1920px;

    padding: 135px 76px 96px;

    box-sizing: border-box;

    overflow: hidden;
}


/* -----------------------------------------
   CONTEÚDO DA CAPA
----------------------------------------- */

.cover-content {
    width: 100%;
    margin-top: 30px;

    display: flex;
    flex-direction: column;

    gap: 24px;
}


.cover-copy {
    position: relative;

    z-index: 3;

    width: 100%;

    margin: 0;
}


/* -----------------------------------------
   FOTO DA CAPA
----------------------------------------- */

.cover-photo {
    position: absolute;

    top: 650px;
    left: 76px;

    width: 928px;
    height: 620px;

    max-height: none;

    margin: 0;
    padding: 0;

    overflow: hidden;

    display: block;

    background: var(--cream-dark);

    border:
        2px solid
        var(--gold);

    border-radius:
        28px
        28px
        0
        0;

    z-index: 1;
}


.cover-photo img {
    display: block;

    width: 100%;
    height: 100%;

    aspect-ratio: auto;

    object-fit: cover;
    object-position: center;
}


/* -----------------------------------------
   BENEFÍCIOS
----------------------------------------- */

.cover .benefits {
    position: absolute;

    left: 76px;
    right: 76px;

    bottom: 210px;

    width: auto;

    margin: 0;
    padding: 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    z-index: 3;
}


/* -----------------------------------------
   FOOTER DA CAPA
----------------------------------------- */

.cover .page-footer {
    position: absolute;

    left: 76px;
    right: 76px;

    bottom: 55px;

    width: auto;

    margin: 0;

    z-index: 3;
}

    /* -----------------------------------------
       BENEFÍCIOS CAPA
    ----------------------------------------- */

    .benefits {
        left: 76px;
        right: 76px;

        bottom: 210px;
    }

    .benefits span {
        font-size: 14px;
    }

    .benefits b {
        font-size: 18px;
    }


    /* -----------------------------------------
       INHALTSVERZEICHNIS
    ----------------------------------------- */

    .contents-grid li {
        font-size: 22px;
    }

    .contents-grid > img {
        width: 355px;

        aspect-ratio: 9 / 16;

        height: auto;

        object-fit: cover;
    }


    /* -----------------------------------------
       TIP
    ----------------------------------------- */

    .tip {
        font-size: 19px;
    }


    /* -----------------------------------------
       CARDS
    ----------------------------------------- */

    .cards article p {
        font-size: 16px;
    }

    .number-list p {
        font-size: 15px;
    }


    /* -----------------------------------------
       ÜBUNGEN
       FOTO + QR JUNTOS
    ----------------------------------------- */

    .exercise-media {
        width: 100%;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 45px;

        margin:
            40px
            0
            45px;
    }

    .exercise-photo-wrap {
        width: 400px;

        flex: 0 0 400px;
    }

    .exercise-media .exercise-photo {
        width: 400px;

        height: auto;

        aspect-ratio: 9 / 16;

        max-width: 400px;

        object-fit: cover;
    }

    .qr-box {
        position: static;

        width: 170px;

        flex: 0 0 170px;

        padding: 18px;

        margin: 0;
    }

    .qr-box span {
        font-size: 10px;

        margin-bottom: 15px;
    }

    .qr-box img {
        width: 130px;

        max-width: 130px;

        height: auto;
    }


    /* -----------------------------------------
       BENEFIT GRID
    ----------------------------------------- */

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


    /* -----------------------------------------
       STEPS
    ----------------------------------------- */

    .steps li {
        font-size: 18px;
    }


    /* -----------------------------------------
       FINAL CTA
    ----------------------------------------- */

    .final-cta {
        grid-template-columns:
            1fr
            220px;
    }
}


/* =========================================================
   48 — SEGURANÇA DE IMPRESSÃO
========================================================= */

@media print {

    img {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .page,
    .cards article,
    .info-grid article,
    .number-list article,
    .tip,
    .warning-box,
    .contact-box,
    .final-cta,
    .exercise-media,
    .exercise-photo-wrap,
    .qr-box {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}


/* =========================================================
   48B — SEGURANÇA DAS FOTOS 9:16
   ÚLTIMA REGRA · SEM ALTURA FORÇADA
========================================================= */

.exercise-media .exercise-photo {
    width: min(100%, 400px);
    height: auto;
    aspect-ratio: 9 / 16;
    max-width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 700px) {

    .exercise-media .exercise-photo {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 9 / 16;
    }
}


/* =========================================================
   49 — ACESSIBILIDADE
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
/* =========================================================
   COVER — ORGANIZAÇÃO FINAL
   RESPONSIVE / MOBILE FIRST
========================================================= */

.cover {
    min-height: 100svh;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    padding: 7% 7% 5%;

    overflow: hidden;
}


/* ---------------------------------------------------------
   CONTEÚDO PRINCIPAL DA CAPA
--------------------------------------------------------- */

.cover-content {

    display: grid;

    grid-template-columns: 1fr;

    gap: 5%;

    align-items: center;

    flex: 1;
}


/* ---------------------------------------------------------
   TEXTO
--------------------------------------------------------- */

.cover-copy {

    width: 100%;

    display: flex;
    flex-direction: column;

    justify-content: center;
}


.cover-copy .eyebrow {

    margin: 0 0 4%;

    font-size: clamp(0.65rem, 2.8vw, 1rem);

    letter-spacing: 0.12em;

    line-height: 1.2;
}


.cover-copy h1 {

    margin: 0;

    font-size: clamp(2rem, 8vw, 4.8rem);

    line-height: 0.95;

    letter-spacing: -0.02em;
}


.cover-copy h1 span {

    color: #cfa33a;
}


.cover-copy .gold-line {

    width: 90px;

    height: 3px;

    margin: 5% 0;

    background: #cfa33a;
}


.cover-copy h2 {

    margin: 0 0 4%;

    font-size: clamp(1rem, 4vw, 1.6rem);

    line-height: 1.25;
}


.cover-copy .cover-description {

    margin: 0;

    font-size: clamp(0.78rem, 3vw, 1.05rem);

    line-height: 1.5;

    max-width: 42rem;
}


/* ---------------------------------------------------------
   FOTO DA CAPA
--------------------------------------------------------- */

.cover-photo {

    width: 100%;

    display: flex;

    justify-content: center;
    align-items: center;
}


.cover-photo img {

    display: block;

    width: min(72%, 320px);

    aspect-ratio: 9 / 16;

    height: auto;

    object-fit: cover;

    object-position: center;

    border-radius: 14px;

    border: 2px solid #cfa33a;

    margin: 0 auto;
}


/* ---------------------------------------------------------
   BENEFÍCIOS
--------------------------------------------------------- */

.cover .benefits {

    width: 100%;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 3%;

    margin-top: 6%;
}


.cover .benefit-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 4% 2%;

    min-height: 70px;

    box-sizing: border-box;
}


.cover .benefit-item b {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin-bottom: 8px;

    border: 2px solid #cfa33a;

    border-radius: 50%;

    color: #cfa33a;

    font-size: 0.85rem;
}


.cover .benefit-item span {

    font-size: clamp(0.62rem, 2.4vw, 0.9rem);

    line-height: 1.25;

    font-weight: 600;
}


/* ---------------------------------------------------------
   FOOTER DA CAPA
--------------------------------------------------------- */

.cover .page-footer {

    width: 100%;

    margin-top: 5%;

    padding-top: 3%;

    border-top: 1px solid rgba(207, 163, 58, 0.45);

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    font-size: clamp(0.62rem, 2.4vw, 0.85rem);
}


.cover .page-footer b {

    color: #185f63;

    white-space: nowrap;
}


/* =========================================================
   MOBILE — CAPA
========================================================= */

@media screen and (max-width: 700px) {

    .cover {

        min-height: 100svh;

        padding: 7% 6% 5%;
    }


    .cover-content {

        grid-template-columns: 1fr;

        gap: 4%;
    }


    .cover-copy h1 {

        font-size: clamp(2rem, 9vw, 3.4rem);
    }


    .cover-copy h2 {

        font-size: clamp(0.95rem, 4.2vw, 1.25rem);
    }


    .cover-copy .cover-description {

        font-size: clamp(0.75rem, 3.2vw, 0.95rem);
    }


    .cover-photo img {

        width: min(52%, 230px);

        aspect-ratio: 9 / 16;

        max-height: 42svh;
    }


    .cover .benefits {

        gap: 2%;
        margin-top: 4%;
    }


    .cover .benefit-item {

        padding: 3% 1%;
    }


    .cover .benefit-item b {

        width: 32px;
        height: 32px;

        font-size: 0.7rem;
    }


    .cover .benefit-item span {

        font-size: clamp(0.55rem, 2.5vw, 0.75rem);
    }


    .cover .page-footer {

        margin-top: 4%;

        font-size: clamp(0.55rem, 2.5vw, 0.75rem);
    }
}


/* =========================================================
   TELAS MUITO PEQUENAS
========================================================= */

@media screen and (max-width: 420px) {

    .cover {

        min-height: 100svh;

        padding: 6% 5% 4%;
    }


    .cover-copy h1 {

        font-size: 9vw;
    }


    .cover-copy h2 {

        font-size: 4vw;
    }


    .cover-copy .cover-description {

        font-size: 3vw;
    }


    .cover-photo img {

        width: 48%;

        max-height: 36svh;
    }


    .cover .benefit-item b {

        width: 29px;
        height: 29px;

        margin-bottom: 5px;
    }


    .cover .benefit-item span {

        font-size: 2.5vw;
    }


    .cover .page-footer {

        font-size: 2.5vw;
    }
}


/* =========================================================
   50 — PRINT FINAL OVERRIDES
   IMPORTANT:
   The responsive cover rules above must not override the
   dedicated 1080 × 1920 PDF layout.
========================================================= */

@media print {

    /* -----------------------------------------
       CAPA — RESTORE PDF LAYOUT
    ----------------------------------------- */

    .cover {
        position: relative;

        width: 1080px;
        height: 1920px;
        min-height: 1920px;

        padding: 135px 76px 96px;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;

        box-sizing: border-box;
        overflow: hidden;
    }

    .cover-content {
        width: 100%;
        margin-top: 30px;

        display: flex;
        flex-direction: column;

        gap: 24px;
        flex: none;
    }

    .cover-copy {
        position: relative;

        z-index: 3;
        width: 100%;
        margin: 0;

        display: block;
    }

    .cover-copy .eyebrow {
        margin: 0 0 3%;

        font-size: 18px;
        line-height: 1.2;
    }

    .cover-copy h1 {
        width: 100%;
        max-width: 100%;

        margin: 0;

        font-size: 72px;
        line-height: 0.95;
        letter-spacing: -0.02em;
    }

    .cover-copy .gold-line {
        width: 80px;
        height: 3px;

        margin: 28px 0;
    }

    .cover-copy h2 {
        width: 100%;
        max-width: 100%;

        margin: 0 0 4%;

        font-size: 30px;
        line-height: 1.25;
    }

    .cover-copy .cover-description {
        width: 100%;
        max-width: 100%;

        margin: 0;

        font-size: 21px;
        line-height: 1.45;
    }

    .cover-photo {
        position: absolute;

        top: 650px;
        left: 76px;

        width: 928px;
        height: 620px;

        max-height: none;

        margin: 0;
        padding: 0;

        overflow: hidden;

        display: block;

        background: var(--cream-dark);

        border: 2px solid var(--gold);
        border-radius: 28px 28px 0 0;

        z-index: 1;
    }

    .cover-photo img {
        display: block;

        width: 100%;
        height: 100%;

        aspect-ratio: auto;

        object-fit: cover;
        object-position: center;

        margin: 0;

        border: 0;
        border-radius: 0;
    }

    .cover .benefits {
        position: absolute;

        left: 76px;
        right: 76px;
        bottom: 210px;

        width: auto;

        margin: 0;
        padding: 0;

        display: grid;
        grid-template-columns: repeat(3, 1fr);

        gap: 20px;

        z-index: 3;
    }

    .cover .benefit-item {
        min-height: 75px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;

        padding: 8px 4px;

        box-sizing: border-box;
    }

    .cover .benefit-item b {
        width: 38px;
        height: 38px;

        margin-bottom: 8px;

        font-size: 18px;
    }

    .cover .benefit-item span {
        font-size: 14px;
        line-height: 1.2;
    }

    .cover .page-footer {
        position: absolute;

        left: 76px;
        right: 76px;
        bottom: 55px;

        width: auto;

        margin: 0;

        padding-top: 20px;

        z-index: 3;

        font-size: 15px;
    }


    /* -----------------------------------------
       FAQ — ALLE ANTWORTEN IM PDF SICHTBAR
    ----------------------------------------- */

    .faq details {
        display: block;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .faq details > p,
    .faq details:not([open]) > p {
        display: block !important;
    }

    .faq summary {
        display: block;
        cursor: default;
    }

    .faq summary::-webkit-details-marker {
        display: none;
    }

    .faq summary::marker {
        display: none;
        content: "";
    }
}
