/* ==========================================
   DESIGN SYSTEM — SAINDO DO LOOP
   Referência: Editorial premium com contraste
   ========================================== */

/* --- VARIÁVEIS --- */
:root {
    /* Paleta de Cores */
    --blue-deep: #0D3154;
    --blue-darker: #12395F;
    --blue-hero: #12395F;
    --blue-soft-bg: #F1F4F3;
    --teal: #6FAFB7;
    --teal-light: rgba(111, 175, 183, 0.15);
    --gold: #D89A42;
    --terracotta: #C96B3B;
    --terracotta-hover: #A85A32;

    --white: #FFFFFF;
    --off-white: #F6F3EE;

    --text-dark: #121A23;
    --text-body: #3B4A5A;
    --text-muted: #6B7B8D;
    --text-light: #F6F3EE;
    --text-hero-muted: rgba(246, 243, 238, 0.8);

    /* Tipografia */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
    --font-micro: 'Inter', sans-serif;

    /* Espaçamento */
    --section-py: clamp(70px, 8vw, 100px);
    --container-max: 1200px;
    --container-px: clamp(24px, 5vw, 48px);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    line-height: 1.15;
    color: var(--text-dark);
}

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

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


/* ==========================================
   BOTÃO CTA
   ========================================== */
.btn-primary {
    display: inline-block;
    background-color: var(--terracotta);
    color: var(--white);
    font-family: var(--font-micro);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--terracotta-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 107, 59, 0.35);
}


/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background: linear-gradient(165deg, #153d66 0%, var(--blue-hero) 35%, #0e2e4a 100%);
    color: var(--text-light);
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: clamp(44px, 5.5vw, 56px) 0 clamp(32px, 4vw, 44px);
}

/* Forma organica decorativa */
.hero__organic-shape {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 70%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(111, 175, 183, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Profundidade sutil no fundo */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.12), transparent);
    pointer-events: none;
    z-index: 0;
}

.hero__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: grid;
    grid-template-columns: 54% 46%;
    align-items: start;
    gap: 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero__logo {
    display: block;
    margin-bottom: 28px;
    width: clamp(160px, 20vw, 200px);
}

/* --- Headline bicolor (estilo da referencia) --- */
.hero__content {
    padding-right: 12px;
}

.hero__headline {
    font-family: 'DM Serif Display', var(--font-display);
    font-size: clamp(2.4rem, 3.8vw, 3.4rem);
    font-weight: 400;
    font-style: normal;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    max-width: 600px;
}

.hero__headline-white {
    display: block;
    color: var(--white);
    margin-bottom: 2px;
}

.hero__headline-gold {
    display: block;
    color: #D89A42;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.55;
    margin-bottom: 12px;
    max-width: 520px;
}

.hero__mechanism {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(246, 243, 238, 0.95);
    line-height: 1.55;
    margin-bottom: 20px;
    max-width: 460px;
    opacity: 1;
}

/* --- Bullets horizontais (como na referencia) --- */
.hero__bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px 16px;
    margin-bottom: 24px;
}

.hero__bullet {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-micro);
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.hero__bullet-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--teal);
}

/* --- CTA area --- */
.hero__cta-area {
    margin-top: 0;
}

.hero__cta-area .btn-primary {
    padding: 15px 56px;
    border-radius: 8px;
    font-size: 0.92rem;
}

.hero__trust {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    font-family: var(--font-micro);
    font-size: 0.68rem;
    color: rgba(246, 243, 238, 0.5);
    letter-spacing: 0.02em;
}

.hero__trust span::before {
    content: '\2713';
    margin-right: 5px;
    color: var(--teal);
    font-size: 0.7em;
}

/* --- Imagem do hero --- */
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero__image {
    width: 105%;
    max-width: 620px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    margin-top: -8px;
    mask-image: linear-gradient(to bottom, black 65%, transparent 98%), linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 98%);
    mask-composite: intersect;
}


/* ==========================================
   SECTIONS — Estrutura base
   ========================================== */
.section {
    padding: var(--section-py) 0;
}

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

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

.section__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section__container--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* --- Labels de seção (como na referência) --- */
.section__label {
    font-family: var(--font-micro);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
}

.section__title {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
}

.section__title--dark {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    color: var(--text-dark);
}

.section__text {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.6;
    max-width: 680px;
}

.section__text--highlight {
    color: var(--terracotta);
    font-weight: 600;
    font-style: italic;
    margin-top: 8px;
}


/* ==========================================
   IDENTIFICAÇÃO — Seção de custos
   ========================================== */
.cost-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cost-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background-color: var(--off-white);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cost-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cost-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--teal);
}

.cost-item span {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
}


/* ==========================================
   SEÇÃO 3: AMPLIFICAÇÃO DA DOR
   ========================================== */
.section--off-white {
    background-color: var(--off-white);
}

.section__label--teal {
    color: var(--teal);
}

.amplification__container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.amplification__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.amplification__text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 24px;
}

.amplification__quote {
    border-left: 2px solid var(--teal);
    padding-left: 24px;
    margin: 28px 0;
}

.amplification__quote p {
    font-family: var(--font-body);
    font-weight: 600;
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.4;
    color: var(--text-dark);
}

.amplification__conscience {
    font-family: var(--font-body);
    font-weight: 500;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--terracotta);
    margin-bottom: 32px;
}

.amplification__separator {
    width: 120px;
    height: 1px;
    background: rgba(111, 175, 183, 0.3);
    margin: 0 auto 24px;
}

.amplification__consequences {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: var(--font-micro);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.amplification__pipe {
    color: rgba(76, 162, 169, 0.4);
}

.amplification__badge {
    padding: 6px 14px;
    background: rgba(111, 175, 183, 0.1);
    border: 1px solid rgba(111, 175, 183, 0.2);
    border-radius: 20px;
    color: var(--blue-deep);
    font-weight: 600;
}


/* ==========================================
   SEÇÃO 4: REVELAÇÃO DO MECANISMO
   ========================================== */
.mechanism__layout {
    display: grid;
    grid-template-columns: 30% 40% 30%;
    align-items: center;
    gap: 16px;
}

.mechanism__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.mechanism__body {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 16px;
}

.mechanism__diagram {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.mechanism__circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100px;
}

.mechanism__circle-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(111, 175, 183, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-deep);
    margin-bottom: 8px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    animation: pulseHighlight 3s ease-in-out infinite;
}

.mechanism__circle:nth-child(3) .mechanism__circle-inner {
    animation-delay: 1s;
}

.mechanism__circle:nth-child(5) .mechanism__circle-inner {
    animation-delay: 2s;
}

@keyframes pulseHighlight {
    0%, 100% {
        transform: scale(1);
        border-color: rgba(111, 175, 183, 0.15);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
        color: var(--blue-deep);
    }
    15%, 25% {
        transform: scale(1.08);
        border-color: var(--teal);
        box-shadow: 0 8px 24px rgba(76, 162, 169, 0.3);
        color: var(--teal);
    }
    40% {
        transform: scale(1);
        border-color: rgba(111, 175, 183, 0.15);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
        color: var(--blue-deep);
    }
}

.mechanism__circle-inner:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(76, 162, 169, 0.15);
}

.mechanism__circle-label {
    font-family: var(--font-micro);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.mechanism__circle-sub {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.mechanism__arrow {
    width: 32px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 30px;
    opacity: 0.2;
    animation: arrowHighlight 3s ease-in-out infinite;
}

.mechanism__arrow:nth-of-type(1) {
    animation-delay: 0.5s;
}

.mechanism__arrow:nth-of-type(2) {
    animation-delay: 1.5s;
}

@keyframes arrowHighlight {
    0%, 100% {
        opacity: 0.2;
        transform: translateX(0);
    }
    15%, 25% {
        opacity: 1;
        transform: translateX(6px);
    }
    40% {
        opacity: 0.2;
        transform: translateX(0);
    }
}

.mechanism__conclusion {
    border-left: 2px solid var(--teal);
    padding-left: 20px;
    min-width: 0; /* Impede que o conteúdo nowrap (marquee) expanda o grid lateralmente */
}

/* --- Loop Ticker (Marquee) --- */
.mechanism__marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 16px;
    background: rgba(111, 175, 183, 0.05);
    border: 1px solid rgba(111, 175, 183, 0.15);
    border-radius: 8px;
    padding: 12px 0;
    position: relative;
}

.mechanism__marquee-container::before,
.mechanism__marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 32px;
    height: 100%;
    z-index: 2;
}
.mechanism__marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}
.mechanism__marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.mechanism__marquee {
    display: inline-block;
    animation: marquee-scroll 8s linear infinite;
}

.mechanism__marquee span {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--blue-deep);
    padding-right: 16px;
    display: inline-block;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.mechanism__conclusion-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.mechanism__conclusion-phrase {
    font-family: var(--font-body);
    font-weight: 500;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--teal);
}


/* ==========================================
   SEÇÃO 5: QUEBRA DE CRENÇA + OBJEÇÕES
   ========================================== */
.beliefs__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.beliefs__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.beliefs__wrong-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
}

.beliefs__wrong-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-micro);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-muted);
}

.beliefs__phrase {
    font-family: var(--font-body);
    font-weight: 500;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-dark);
    text-align: center;
}

.beliefs__divider {
    width: 200px;
    height: 1px;
    background: var(--blue-soft-bg);
    margin: 48px auto;
}

.beliefs__top {
    text-align: center;
}

/* Accordion */
.accordion__item {
    border-bottom: 1px solid var(--blue-soft-bg);
}

.accordion__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
    text-align: left;
}

.accordion__header:hover {
    background: rgba(232, 238, 244, 0.5);
}

.accordion__question {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.accordion__chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.accordion__item--open .accordion__chevron {
    transform: rotate(180deg);
}

.accordion__body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.accordion__item--open .accordion__body {
    max-height: 200px;
    opacity: 1;
}

.accordion__body p {
    padding: 0 16px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
}


/* ==========================================
   SEÇÃO 6: SOLUÇÃO — O MÉTODO
   ========================================== */
.solution__header {
    text-align: center;
    margin-bottom: 32px;
}

.solution__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.solution__subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    max-width: 640px;
    margin: 0 auto;
}

.solution__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.solution__card {
    padding: 32px 32px;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.solution__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.solution__card--teal {
    background: rgba(111, 175, 183, 0.03);
    border: 1px solid rgba(111, 175, 183, 0.1);
}

.solution__card--terra {
    background: rgba(201, 107, 59, 0.02);
    border: 1px solid rgba(201, 107, 59, 0.08);
}

.solution__number {
    position: absolute;
    top: -20px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-micro);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.solution__number:hover {
    transform: scale(1.1);
}

.solution__number--teal {
    background: var(--teal);
}

.solution__number--terra {
    background: var(--terracotta);
}

.solution__card-label {
    font-family: var(--font-micro);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    margin-top: 16px;
}

.solution__card-label--teal {
    color: var(--teal);
}

.solution__card-label--terra {
    color: var(--terracotta);
}

.solution__card-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.solution__card-subtitle {
    font-family: var(--font-body);
    font-weight: 500;
    font-style: italic;
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 16px;
}

.solution__card-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 16px;
}

.solution__card-highlight {
    font-family: var(--font-body);
    font-weight: 500;
    font-style: italic;
    font-size: 0.9rem;
}

.solution__card-highlight--teal {
    color: var(--teal);
}

.solution__benefits {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.solution__benefits span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--terracotta);
    font-weight: 500;
}

.solution__benefits span::before {
    content: '\2713';
    margin-right: 8px;
    color: var(--terracotta);
}

.solution__benefits {
    margin-top: auto;
}

/* Faixa de reforço */
.solution__reinforcement {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--blue-soft-bg);
    border-bottom: 1px solid var(--blue-soft-bg);
}

.solution__reinforce-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-micro);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--text-body);
}

.solution__reinforce-sep {
    color: var(--blue-soft-bg);
    font-size: 0.8rem;
}


/* ==========================================
   SEÇÃO 7: BENEFÍCIOS
   ========================================== */
.benefits__label {
    text-align: center;
    margin-bottom: 16px;
}

.benefits__line {
    width: 60px;
    height: 1px;
    background: rgba(76, 162, 169, 0.2);
    margin: 0 auto 48px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}

.benefits__item {
    text-align: center;
    cursor: default;
}

.benefits__icon {
    margin: 0 auto 12px;
    display: block;
    width: 48px;
    height: 48px;
    stroke-width: 1.2;
    transition: transform 0.3s ease;
}

.benefits__item:hover .benefits__icon {
    transform: translateY(-4px);
}

.benefits__text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.benefits__item:hover .benefits__text {
    color: var(--blue-deep);
}

#beneficios {
    padding: clamp(50px, 6vw, 80px) 0;
}


/* ==========================================
   SEÇÃO 8: CONTEÚDO + AUTORIDADE (Bento Box)
   ========================================== */
.bento {
    display: grid;
    grid-template-columns: 280px 1fr 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}



.bento__image {
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.1);
}

.bento__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bento__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 58, 95, 0.3), transparent);
}

.bento__course {
    padding: 40px 32px;
    background: var(--blue-soft-bg);
}

.bento__author {
    padding: 40px 32px;
    background: var(--white);
    border-left: 1px solid var(--blue-soft-bg);
}

.bento__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.bento__subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 32px;
}

.bento__modules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.bento__module {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-body);
}

.bento__module:hover {
    background: rgba(76, 162, 169, 0.08);
}

.bento__module-num {
    font-family: var(--font-micro);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--teal);
    min-width: 18px;
}

.bento__bio {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 20px;
}

.bento__credentials {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento__credentials li {
    font-family: var(--font-micro);
    font-weight: 500;
    font-size: 0.82rem;
    color: var(--text-dark);
    padding-left: 20px;
    position: relative;
}

.bento__credentials li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}


/* ==========================================
   SEÇÃO 9: OFERTA
   ========================================== */
.offer {
    background-color: var(--blue-hero);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.offer__bg-shape {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 80%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(76, 162, 169, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.offer__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
    position: relative;
    z-index: 1;
}

.offer__separator {
    width: 1px;
    background: rgba(232, 238, 244, 0.1);
    align-self: stretch;
}

.offer__price-zone,
.offer__bonus-zone,
.offer__guarantee-zone {
    padding: 32px 24px;
}

.offer__label {
    font-family: var(--font-micro);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    margin-bottom: 16px;
}

.offer__product-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 4px;
}

.offer__product-sub {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-hero-muted);
    margin-bottom: 24px;
}

.offer__price-block {
    margin-bottom: 24px;
}

.offer__price {
    font-family: var(--font-micro);
    font-weight: 700;
    font-size: 5rem;
    color: var(--white);
    letter-spacing: -0.02em;
    display: block;
}

.offer__price-info {
    font-family: var(--font-micro);
    font-size: 0.8rem;
    color: rgba(232, 238, 244, 0.5);
}

.offer__cta {
    display: block;
    text-align: center;
    margin-bottom: 16px;
}

.offer__cta:hover {
    box-shadow: 0 0 20px rgba(211, 84, 0, 0.3), 0 12px 32px rgba(211, 84, 0, 0.4);
    transform: translateY(-3px);
}

.offer__trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--font-micro);
    font-size: 0.72rem;
    color: rgba(232, 238, 244, 0.6);
}

.offer__trust span::before {
    content: '\2713';
    margin-right: 4px;
    color: var(--teal);
}

.offer__bonus-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: background 0.2s ease;
}

.offer__bonus-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.offer__bonus-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.offer__bonus-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-hero-muted);
    line-height: 1.6;
}

.offer__seal {
    width: 96px;
    height: 96px;
    border: 1px solid var(--gold);
    box-shadow: inset 0 0 0 3px rgba(216, 154, 66, 0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    animation: seal-float 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.offer__seal:hover {
    transform: scale(1.05);
}

@keyframes seal-float {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

.offer__seal-number {
    font-family: var(--font-micro);
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
}

.offer__seal-label {
    font-family: var(--font-micro);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--gold);
}

.offer__guarantee-text {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-hero-muted);
    line-height: 1.6;
}

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


/* ==========================================
   SEÇÃO 10: CTA FINAL
   ========================================== */
.final-cta__container {
    max-width: 640px;
    margin: 0 auto;
    padding: 60px var(--container-px);
    text-align: center;
}

.final-cta__line {
    width: 80px;
    height: 1px;
    background: var(--blue-soft-bg);
    margin: 0 auto 32px;
}

.final-cta__text {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: var(--text-body);
}

.final-cta__phrase {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--text-dark);
    margin-top: 8px;
    margin-bottom: 32px;
}

.final-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.final-cta__arrow {
    display: inline-block;
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.final-cta__btn:hover .final-cta__arrow {
    transform: translateX(4px);
}

#cta-final {
    padding: clamp(50px, 6vw, 80px) 0;
}


/* ==========================================
   RESPONSIVO
   ========================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: left;
    }

    .hero__content {
        padding-right: 0;
        order: 0;
    }

    .hero__visual {
        order: 1;
        max-width: 320px;
        margin: -16px auto 0;
    }

    .hero__headline {
        font-size: clamp(2rem, 6vw, 3rem);
    }

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

    .hero__bullet {
        white-space: normal;
    }

    .section__container--split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Mecanismo */
    .mechanism__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mechanism__diagram {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .mechanism__arrow {
        transform: rotate(90deg) !important;
        margin: 8px 0;
        animation: none !important;
        height: 16px;
    }

    /* Solução */
    .solution__cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Benefícios */
    .benefits__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    /* Bento */
    .bento {
        grid-template-columns: 1fr 1fr;
    }

    .bento__image {
        display: none;
    }

    /* Oferta */
    .offer__grid {
        grid-template-columns: 1fr;
    }

    .offer__separator {
        width: 100%;
        height: 1px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero {
        padding: 32px 0 0;
        min-height: auto;
    }

    .hero__logo {
        margin: 0 auto 36px;
    }

    .hero__headline {
        font-size: 1.8rem;
        margin-bottom: 24px;
        text-align: center;
    }

    .hero__mechanism {
        font-size: 1.1rem;
        color: rgba(246, 243, 238, 0.65);
        text-align: center;
        margin: 0 auto 28px;
        line-height: 1.6;
    }

    .hero__subtitle {
        font-size: 1.15rem;
        color: rgba(246, 243, 238, 0.75);
        text-align: center;
        margin: 0 auto 64px;
        line-height: 1.6;
    }

    .hero__cta-area {
        margin-bottom: 48px;
    }

    .hero__trust {
        flex-direction: column;
        gap: 8px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 16px 32px;
    }

    .section__title--dark {
        font-size: 1.6rem;
    }

    /* Amplificação */
    .amplification__title {
        font-size: 1.8rem;
    }

    .amplification__consequences {
        flex-direction: column;
        gap: 8px;
    }

    .amplification__pipe {
        display: none;
    }

    /* Mecanismo */
    .mechanism__title {
        font-size: 1.6rem;
    }

    .mechanism__layout {
        gap: 20px;
    }

    .mechanism__diagram {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .mechanism__arrow {
        transform: rotate(90deg) !important;
        margin: 8px 0;
        animation: none !important;
        height: 16px;
    }

    .mechanism__circle-inner {
        width: 80px;
        height: 80px;
    }

    /* Quebra de crença */
    .beliefs__title {
        font-size: 1.5rem;
    }

    .beliefs__wrong-list {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .accordion__header {
        padding: 16px;
    }

    /* Solução */
    .solution__title {
        font-size: 2rem;
    }

    .solution__card {
        padding: 28px 24px;
    }

    .solution__reinforcement {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .solution__reinforce-sep {
        display: none;
    }

    /* Benefícios */
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .benefits__icon {
        width: 32px;
        height: 32px;
    }

    /* Bento */
    .bento {
        grid-template-columns: 1fr;
    }

    .bento__course,
    .bento__author {
        padding: 32px 24px;
    }

    .bento__author {
        border-left: none;
        border-top: 1px solid var(--blue-soft-bg);
    }

    /* Oferta */
    .offer__price-zone,
    .offer__bonus-zone,
    .offer__guarantee-zone {
        padding: 32px 24px;
    }

    .offer__price {
        font-size: 2.5rem;
    }

    /* CTA Final */
    .final-cta__text {
        font-size: 1.1rem;
    }

    .final-cta__btn {
        width: 100%;
        justify-content: center;
    }
}
/* ==========================================
   V2 — IDENTIFICATION SHOWCASE
   ========================================== */

/* Showcase: Imagem wide + cards sobrepostos */
.ident__showcase {
    position: relative;
    margin: 32px auto 0;
    max-width: 720px;
}

.ident__image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.ident__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.ident__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(13, 49, 84, 0.55) 100%);
    border-radius: 16px;
    pointer-events: none;
}

.ident__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
    margin-top: -60px;
    padding: 0 24px;
    z-index: 2;
}

.ident__card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;

    /* Deposit animation — start state */
    opacity: 0;
    transform: translateY(-40px) scale(0.92);
}

/* Deposit animation — end state */
.ident__card.is-deposited {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: cardDeposit 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes cardDeposit {
    0% {
        opacity: 0;
        transform: translateY(-40px) scale(0.92);
    }
    60% {
        opacity: 1;
        transform: translateY(4px) scale(1.01);
    }
    80% {
        transform: translateY(-2px) scale(1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

.ident__card-icon {
    width: 32px;
    height: 32px;
    color: var(--teal);
    flex-shrink: 0;
}

.ident__card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
}

/* Transição editorial */
.ident__transition {
    max-width: 600px;
    margin: 56px auto 0;
    text-align: center;
}

/* ==========================================
   SCROLL REVEAL — Cascade Effect
   ========================================== */
.reveal {
    max-width: 600px;
    margin: 64px auto 0;
    display: flex;
    gap: 24px;
    position: relative;
    padding: 32px 0;
}

.reveal__accent {
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, var(--teal) 20%, var(--teal) 80%, transparent 100%);
    flex-shrink: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible .reveal__accent {
    transform: scaleY(1);
}

.reveal__content {
    flex: 1;
    padding-left: 8px;
}

.reveal__line {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-20px);
    filter: blur(3px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.reveal.is-visible .reveal__line {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

/* Staggered delays (set via CSS custom property or nth-child) */
.reveal.is-visible .reveal__line:nth-child(1) { transition-delay: 0.1s; }
.reveal.is-visible .reveal__line:nth-child(2) { transition-delay: 0.2s; }
.reveal.is-visible .reveal__line:nth-child(3) { transition-delay: 0.3s; }
.reveal.is-visible .reveal__line:nth-child(4) { transition-delay: 0.4s; }
.reveal.is-visible .reveal__sep:nth-child(5) { transition-delay: 0.5s; }
.reveal.is-visible .reveal__line:nth-child(6) { transition-delay: 0.6s; }
.reveal.is-visible .reveal__line:nth-child(7) { transition-delay: 0.75s; }
.reveal.is-visible .reveal__line:nth-child(8) { transition-delay: 0.9s; }
.reveal.is-visible .reveal__line:nth-child(9) { transition-delay: 1.1s; }
.reveal.is-visible .reveal__sep:nth-child(10) { transition-delay: 1.2s; }
.reveal.is-visible .reveal__line:nth-child(11) { transition-delay: 1.35s; }
.reveal.is-visible .reveal__line:nth-child(12) { transition-delay: 1.55s; }

.reveal__line--bold {
    font-weight: 600;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 4px;
    margin-bottom: 16px;
}

.reveal__line--accent {
    font-weight: 600;
    font-style: italic;
    color: var(--terracotta);
    font-size: 1.1rem;
    margin-top: 4px;
}

.reveal__sep {
    width: 60px;
    height: 1px;
    background: rgba(111, 175, 183, 0.3);
    margin: 20px 0;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible .reveal__sep {
    opacity: 1;
    transform: scaleX(1);
}

/* ==========================================
   COST ITEMS — Compact 2x2 Grid
   ========================================== */
.ident__costs {
    margin-top: 56px;
}

.ident__cost-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.ident__cost-grid .cost-item {
    padding: 16px 20px;
    border-radius: 10px;
    background: var(--off-white);
    gap: 12px;
}

/* ==========================================
   RESPONSIVE — Identification & Reveal
   ========================================== */
@media (max-width: 768px) {
    .ident__cards {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: -40px;
        padding: 0 16px;
    }

    .ident__card {
        flex-direction: row;
        text-align: left;
        padding: 16px;
        gap: 12px;
    }

    .ident__card-icon {
        width: 28px;
        height: 28px;
    }

    .reveal {
        margin-top: 48px;
        padding: 24px 0;
    }

    .ident__cost-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ident__transition {
        margin-top: 40px;
    }
}


/* Content Wide (Conteúdo do Curso) */
.content-wide {
    position: relative;
    padding: 120px 0;
    background-image: url('/.netlify/images?url=/images/cerebro_colorido_com_contraste_de_interpretacao.png&w=1200&q=80');
    background-size: cover;
    background-position: center;
}

.content-wide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 24, 20, 0.95) 0%, rgba(19, 87, 106, 0.85) 100%);
    z-index: 1;
}

.content-wide__inner {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.content-wide__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--white);
}

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

@media (max-width: 992px) {
    .content-wide__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .content-wide__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 32px;
    }
    .content-wide__card {
        padding: 16px;
    }
    .content-wide__num {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }
    .content-wide__name {
        font-size: 0.9rem;
    }
}

.content-wide__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-wide__card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.content-wide__num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    opacity: 0.8;
    margin-bottom: 8px;
    display: block;
}

.content-wide__name {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ==========================================
   PARA QUEM É (E NÃO É)
   ========================================== */
.who-is-it-for__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.who-is-it-for__card {
    padding: 40px;
    border-radius: 16px;
    background: var(--off-white);
    border: 1px solid rgba(0,0,0,0.05);
}

.who-is-it-for__card--positive {
    background: rgba(111, 175, 183, 0.04);
    border-color: rgba(111, 175, 183, 0.15);
}

.who-is-it-for__card--negative {
    background: rgba(201, 107, 59, 0.03);
    border-color: rgba(201, 107, 59, 0.1);
}

.who-is-it-for__list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-body);
}

.who-is-it-for__list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.who-is-it-for__icon {
    font-size: 1.1rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.who-is-it-for__icon--positive {
    color: var(--teal);
}

.who-is-it-for__icon--negative {
    color: var(--terracotta);
}

@media (max-width: 768px) {
    .who-is-it-for__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .who-is-it-for__card {
        padding: 32px 24px;
    }
}

/* ==========================================
   SEÇÃO: AUTOR (Novo Layout Box)
   ========================================== */
.author-box {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 0;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    width: 100%;
    min-width: 0;
}

.author-box__content {
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-width: 0; /* Essencial para carrossel dentro de flex/grid */
}

.author-box__image {
    height: 100%;
    background: var(--blue-soft-bg);
}

.author-box__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 100%);
}

@media (max-width: 992px) {
    .author-box {
        grid-template-columns: 1fr;
    }
    .author-box__content {
        padding: 40px 24px;
    }
    .author-box__image {
        height: 400px;
    }
    .author-box__image img {
        mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
    }
}

/* ==========================================
   CARROSSEL DO FELIPE RUSSO (Ajustado)
   ========================================== */
.author-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    width: 100%;
}

.author-carousel__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.author-carousel__slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 24px;
    background: var(--blue-soft-bg);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    white-space: normal;
}

.author-carousel__slide p {
    font-family: var(--font-body);
    font-size: 0.95rem; /* Um pouco mais próximo do original */
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 12px;
}

.author-carousel__slide p:last-child {
    margin-bottom: 0;
}

.author-carousel__nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 24px;
}

.author-carousel__btn {
    background: var(--teal);
    color: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(111, 175, 183, 0.3);
}

.author-carousel__btn:hover {
    background: var(--blue-deep);
    box-shadow: 0 6px 16px rgba(13, 49, 84, 0.4);
    transform: translateY(-2px);
}

.author-carousel__dots {
    display: flex;
    gap: 8px;
}

.author-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(111, 175, 183, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.author-carousel__dot--active {
    background: var(--teal);
    transform: scale(1.3);
}

@media (max-width: 600px) {
    .author-carousel__slide {
        padding: 24px 20px;
    }
    .author-carousel__slide p {
        font-size: 0.9rem;
    }
    .author-carousel__nav {
        justify-content: center;
    }
}
