:root {
    /* Cores */
    --primary: #5aa9e6;
    --primary-dark: #4a6b8a;
    --secondary: #eaf4fc;
    --gold: #c9a34a;
    --gold-soft: #ede4d3;
    --gold-text: #6b5232;
    --marker-yellow: #f9d94a;
    --underline-green: #2f7a3a;
    --headline-navy: #17263f;
    --dark-green: #0e3a2e;
    --success-green: #2e9d55;
    --success-green-dark: #237a41;
    --success-green-text: #1e6b3a;
    --text-body: #5a6b78;
    --marquee-bg: #edd9a5;
    --marquee-text: #7a5a1a;

    /* Superfícies */
    --background: #f2f3f5;
    --background-cream: #f5f0e8;
    --callout-bg: #f6ebd6;
    --card-bg: #ffffff;
    --image-bg: #eef1f5;

    /* Texto */
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;

    /* Bordas */
    --border: #dbe6f0;
    --border-light: #e6ecf2;

    /* Forma */
    --radius-sm: 12px;
    --radius: 16px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    /* Sombras */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);

    /* Tipografia */
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Layout */
    --container-width: 460px;
    --container-wide: 1200px;

    /* Movimento */
    --transition: 0.15s ease;
    --transition-slow: 0.3s ease;
}

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

body {
    font-family: var(--font);
    background: var(--background);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.quiz-wrapper {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 32px 16px;
}

.quiz-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    text-align: center;
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.tag {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: var(--border-light);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--radius-pill);
    transition: width var(--transition-slow);
}

.progress-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    min-width: 28px;
    text-align: right;
}

.question {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.option {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
    font-family: inherit;
}

.option:hover {
    border-color: var(--primary);
    background: #f7fbff;
}

.option.selected {
    border-color: var(--primary);
    background: var(--secondary);
    color: var(--text-primary);
}

.skip-link {
    display: inline-block;
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.skip-link:hover {
    color: var(--text-primary);
}

@media (max-width: 480px) {
    .quiz-wrapper {
        padding: 16px 12px;
    }

    .quiz-card {
        padding: 20px;
        border-radius: 18px;
    }

    .title {
        font-size: 28px;
    }

    .question {
        font-size: 17px;
    }

    .option {
        padding: 14px 16px;
        font-size: 14px;
    }
}

/* ============ RESULTADO ============ */
.result-card {
    padding-top: 32px;
    padding-bottom: 32px;
}

.result-check {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-pill);
    background: var(--secondary);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.result-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.result-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0 auto 24px;
    max-width: 380px;
}

.result-thanks {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0 auto 16px;
    max-width: 340px;
}

.discount-coupon {
    position: relative;
    background: var(--marker-yellow);
    border: 2px dashed #d4a548;
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin: 0 8px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    overflow: visible;
}

.discount-coupon::before,
.discount-coupon::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    background: var(--card-bg);
    border-radius: var(--radius-pill);
    transform: translateY(-50%);
}

.discount-coupon::before {
    left: -13px;
}

.discount-coupon::after {
    right: -13px;
}

.discount-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold-text);
    letter-spacing: 1.5px;
}

.discount-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--gold-text);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.discount-product {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold-text);
    letter-spacing: 1.5px;
}

.result-helper {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.result-button {
    display: block;
    width: 100%;
    background: #2e9d55;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 20px;
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 0 #237a41;
    transition: transform var(--transition), box-shadow var(--transition);
    font-family: inherit;
    text-align: center;
    letter-spacing: 0.2px;
    cursor: pointer;
}

.result-button:hover,
.result-button:visited {
    color: #ffffff;
    text-decoration: none;
}

.result-button:hover {
    transform: translateY(1px);
    box-shadow: 0 3px 0 #237a41;
}

.result-button:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 #237a41;
}

@media (max-width: 480px) {
    .result-title {
        font-size: 22px;
    }

    .discount-value {
        font-size: 22px;
    }

    .result-button {
        font-size: 14px;
        padding: 14px 16px;
    }
}

/* ============ HERO ============ */
.hero {
    background: var(--background-cream);
    padding: 48px 24px 72px;
}

.hero-container {
    max-width: var(--container-wide);
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 40px;
    align-items: start;
}

.hero-left {
    padding-top: 8px;
    max-width: 520px;
    justify-self: end;
    width: 100%;
}

/* Logo */
.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: 0 auto 20px;
}

.hero-logo-icon {
    width: 42px;
    height: 28px;
    object-fit: contain;
    margin-bottom: 4px;
}

.hero-logo-img {
    width: 205px;
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 560px) {
    .hero-logo-img {
        width: 168px;
    }
}

.hero-logo-icon-fallback {
    width: 42px;
    height: 28px;
    margin-bottom: 4px;
    background:
        radial-gradient(circle at 50% 100%, transparent 45%, var(--text-primary) 46%, var(--text-primary) 48%, transparent 49%),
        linear-gradient(to right, var(--text-primary) 48%, transparent 48%, transparent 52%, var(--text-primary) 52%);
    -webkit-mask: linear-gradient(#000, #000);
    /* fallback simples: contorno tipo livrinho */
    border-top: 2px solid var(--text-primary);
    border-radius: 2px 2px 0 0;
}

.hero-logo-brand {
    display: inline-block;
    background: var(--marker-yellow);
    padding: 3px 12px 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 900;
    font-size: 26px;
    color: var(--text-primary);
    letter-spacing: 1.5px;
    line-height: 1;
}

.hero-logo-tagline {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 6px;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Pill */
.hero-pill {
    display: inline-block;
    background: var(--gold-soft);
    color: var(--gold-text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}

/* Headline */
.hero-headline {
    font-size: 37px;
    font-weight: 900;
    color: var(--dark-green);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
}

.hero-marker {
    background: transparent;
    padding: 0;
    color: #C89A3A;
    border-bottom: none;
    border-radius: 0;
    font-weight: inherit;
    text-decoration: underline;
    text-decoration-color: #C89A3A;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

/* Caixa "Bíblia" — papel pautado */
.hero-writing-box {
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 28px;
    width: 385px;
    max-width: 100%;
    margin-bottom: 8px;
    transform: translateY(-3px);
}

.hero-writing-lines {
    position: relative;
    height: 90px;
    background-image:
        linear-gradient(to bottom, transparent calc(50% - 1px), #d9e1ea calc(50% - 1px), #d9e1ea 50%, transparent 50%),
        linear-gradient(to bottom, transparent calc(20% - 1px), #eef2f6 calc(20% - 1px), #eef2f6 20%, transparent 20%),
        linear-gradient(to bottom, transparent calc(80% - 1px), #eef2f6 calc(80% - 1px), #eef2f6 80%, transparent 80%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-writing-word {
    font-family: "Brush Script MT", "Lucida Handwriting", "Segoe Script", cursive;
    font-size: 78px;
    line-height: 1;
    color: var(--text-primary);
    padding-bottom: 6px;
}

/* Callout 15 min */
.hero-callout {
    background: #faf1de;
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 24px 32px;
    width: 100%;
    max-width: 570px;
}

.hero-callout-label {
    display: block;
    color: var(--gold);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero-callout-line {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.4;
}

.hero-callout-line:last-child {
    margin-bottom: 0;
}

.underline-green {
    border-bottom: 2px solid var(--underline-green);
    padding-bottom: 2px;
}

/* Coluna direita: ilustração + badges flutuantes */
.hero-right {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}

.hero-image-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder {
    width: 95%;
    height: 95%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    transform: translate(-18px, 45px) scale(1.41);
    transform-origin: center;
}

.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-float {
    position: absolute;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    box-shadow: var(--shadow);
    max-width: 175px;
    font-size: 12px;
    line-height: 1.35;
    color: var(--text-primary);
}

.hero-float strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.hero-float span {
    color: var(--text-secondary);
    font-weight: 500;
    display: block;
}

.hero-float-top {
    top: 10%;
    left: 38%;
}

.hero-float-left {
    top: 16%;
    left: 6%;
}

.hero-float-right {
    top: 30%;
    right: 6%;
}

/* Parágrafo inferior */
.hero-body {
    max-width: 900px;
    margin: 4px auto 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.65;
}

.hero-body strong {
    color: var(--text-primary);
    font-weight: 700;
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        justify-self: center;
        max-width: 520px;
    }

    .hero-right {
        max-width: 480px;
    }
}

@media (max-width: 560px) {
    .hero {
        padding: 28px 16px 40px;
    }

    .hero-logo {
        margin-bottom: 10px;
    }

    .hero-logo-img {
        width: 145px;
    }

    .hero-pill {
        padding: 8px 16px;
        font-size: 11px;
        letter-spacing: 1.2px;
        margin-bottom: 10px;
    }

    .hero-headline {
        font-size: 27px;
        line-height: 1.2;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .hero-writing-box {
        width: 100%;
        padding: 14px 24px;
        margin-bottom: 10px;
    }

    .hero-writing-lines {
        height: 100px;
    }

    .hero-writing-word {
        font-size: 86px;
    }

    .hero-callout {
        width: 100%;
        max-width: 100%;
        padding: 16px 20px;
        border-left-width: 3px;
    }

    .hero-right {
        max-width: 330px;
    }

    .hero-image-placeholder {
        width: 100%;
        height: 100%;
        transform: translateY(-2px) scale(1.10);
        transform-origin: bottom center;
    }

    .hero-image-placeholder img {
        object-fit: contain;
        object-position: center bottom;
    }

    .hero-float-top {
        top: 0;
        left: 12%;
    }

    .hero-float-left {
        top: 22%;
        left: 0;
    }

    .hero-float-right {
        top: 28%;
        right: 0;
    }

    .hero-float {
        max-width: 135px;
        font-size: 10.5px;
        padding: 7px 10px;
    }

    .hero-float strong {
        font-size: 12px;
    }

    .hero-body {
        font-size: 16px;
        line-height: 1.55;
        max-width: 100%;
        padding: 0 8px;
        margin-top: 4px;
    }
}

/* ============ OFERTA ============ */
.offer {
    background: var(--background-cream);
    padding: 32px 24px 72px;
}

.offer-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.quote-card {
    background: var(--dark-green);
    border-radius: 28px;
    padding: 40px 56px;
    color: #ffffff;
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
    font-style: italic;
    letter-spacing: 0.2px;
    width: 100%;
}

.bless-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    color: var(--dark-green);
    border: 2px dashed var(--gold);
    border-radius: var(--radius-pill);
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-align: center;
}

.value-box {
    background: var(--callout-bg);
    border-radius: var(--radius-sm);
    padding: 22px 32px;
    text-align: center;
    width: 100%;
    color: var(--dark-green);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
}

.value-box-highlight {
    color: var(--gold);
    font-weight: 800;
}

.offer-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 26px 44px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 620px;
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background: var(--gold-soft);
    color: var(--gold-text);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
}

.offer-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-green);
    line-height: 1.3;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.offer-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.offer-prices {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
}

.price-old {
    font-size: 15px;
    color: var(--text-secondary);
    text-decoration: line-through;
    text-decoration-color: var(--text-secondary);
    text-decoration-thickness: 1px;
    font-weight: 600;
}

.price-new {
    font-size: 40px;
    font-weight: 800;
    color: var(--success-green);
    letter-spacing: -0.5px;
    line-height: 1;
}

.price-save {
    background: var(--marker-yellow);
    color: var(--gold-text);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.offer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 620px;
    background: var(--success-green);
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-decoration: none;
    padding: 24px 32px;
    border: none;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 0 var(--success-green-dark);
    transition: transform var(--transition), box-shadow var(--transition);
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.offer-cta:hover,
.offer-cta:visited {
    color: #ffffff;
    text-decoration: none;
}

.offer-cta:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 var(--success-green-dark);
}

.offer-cta:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 var(--success-green-dark);
}

.offer-cta-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: var(--radius-pill);
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 36px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
}

.offer-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.offer-trust-item svg {
    color: var(--success-green);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.offer-verse {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    font-style: italic;
    line-height: 1.5;
    margin-top: 12px;
    max-width: 620px;
}

/* ============ GARANTIA ============ */
.guarantee {
    background: var(--background);
    padding: 96px 24px 96px;
    text-align: center;
}

.guarantee-inner {
    max-width: 760px;
    margin: 0 auto;
}

.guarantee-title {
    font-size: 34px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}

.guarantee-subtitle {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 22px;
}

.guarantee-text {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

.guarantee-text strong {
    font-weight: 800;
    color: var(--text-primary);
}

/* ============ FAQ COMPLETO ============ */
.faq-full {
    background: var(--background);
    padding: 40px 24px 96px;
}

.faq-full-inner {
    max-width: 860px;
    margin: 0 auto;
}

.faq-full-title {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    margin-bottom: 40px;
}

.faq-full-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    background: #f0f2f5;
    border-radius: 8px;
    padding: 18px 22px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-question-line,
.faq-answer-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.55;
}

.faq-question-line {
    color: var(--headline-navy);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.faq-answer-line {
    color: var(--text-body);
    font-size: 14px;
    padding-left: 4px;
}

.faq-mark {
    display: inline-block;
    font-size: 15px;
    font-weight: 800;
    flex-shrink: 0;
    line-height: 1.45;
    min-width: 14px;
}

.faq-mark-p {
    color: #3aa5ff;
}

.faq-mark-r {
    color: #2e9d55;
}

/* ============ RODAPÉ ============ */
.site-footer {
    background: var(--headline-navy);
    color: #ffffff;
    padding: 22px 24px;
}

.site-footer-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.site-footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.site-footer-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: transform var(--transition);
}

.site-footer-social a:hover {
    transform: translateY(-1px);
}

.site-footer-social .social-fb {
    background: #1877f2;
}

.site-footer-social .social-ig {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
}

@media (max-width: 640px) {
    .guarantee {
        padding: 56px 16px 56px;
    }

    .guarantee-title {
        font-size: 26px;
    }

    .guarantee-subtitle {
        font-size: 17px;
    }

    .faq-full {
        padding: 24px 16px 64px;
    }

    .faq-full-title {
        font-size: 30px;
    }

    .faq-question-line {
        font-size: 15px;
    }

    .faq-answer-line {
        font-size: 13.5px;
    }

    .site-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ============ COMO FUNCIONA ============ */
.how {
    background: var(--card-bg);
    padding: 72px 24px 80px;
}

.how-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
}

.how-title {
    text-align: center;
    font-size: 34px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    margin-bottom: 48px;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
}

.how-step-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.how-step-icon-red { background: #b93a3a; }
.how-step-icon-blue { background: #22b5c2; }
.how-step-icon-orange { background: #f39222; }
.how-step-icon-purple { background: #8e44b5; }

.how-step-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.how-step-text {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.55;
    max-width: 260px;
}

/* FAQ */
.faq {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 24px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition);
    color: #e34a4a;
    font-size: 15px;
    font-weight: 700;
}

.faq-item:hover {
    border-color: #f0b4b4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    flex: 1;
}

.faq-toggle {
    width: 22px;
    height: 22px;
    border-radius: var(--radius-pill);
    background: #e34a4a;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
    line-height: 1;
}

.faq-answer {
    display: none;
    width: 100%;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 400;
    text-align: left;
}

.faq-answer p {
    margin: 0 0 8px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-item {
    flex-wrap: wrap;
}

.faq-item[aria-expanded="true"] .faq-answer {
    display: block;
}

.faq-item[aria-expanded="true"] .faq-toggle {
    background: var(--text-body);
}

@media (max-width: 960px) {
    .how-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
    }

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

@media (max-width: 560px) {
    .how {
        padding: 48px 16px 56px;
    }

    .how-title {
        font-size: 26px;
        margin-bottom: 32px;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 40px;
    }

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

    .faq-item {
        font-size: 14px;
    }
}

/* ============ POR QUE USAR O SALMOGRAFIA ============ */
.why {
    background-image: url("why-bg.webp");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 72px 24px 0;
    color: #ffffff;
    text-align: center;
    position: relative;
    min-height: 900px;
    overflow: hidden;
}

.why-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.why-title {
    font-size: 34px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.3px;
    margin-bottom: 14px;
}

.why-verse {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-style: italic;
    margin-bottom: 56px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 64px;
}

.why-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12px;
}

.why-icon {
    width: 74px;
    height: 74px;
    border-radius: var(--radius-pill);
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a5f88;
    margin-bottom: 22px;
}

.why-col-title {
    color: #f2c94c;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 14px;
}

.why-col-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.65;
    max-width: 320px;
}

.why-quote-card {
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 18px 32px;
    max-width: 720px;
    margin: 0 auto 48px;
    font-size: 15px;
    font-style: italic;
    line-height: 1.55;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.why-quote-card span {
    display: block;
    margin-top: 4px;
    font-style: normal;
}

.why-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.why-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    position: absolute;
    bottom: 0;
    left: 0;
}

@media (max-width: 960px) {
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .why {
        padding: 48px 16px 0;
        background-color: #224975;
        background-image:
            linear-gradient(180deg, #224975 0%, #224975 30%, rgba(34, 73, 117, 0.92) 42%, rgba(34, 73, 117, 0.72) 52%, rgba(34, 73, 117, 0.45) 62%, rgba(34, 73, 117, 0.18) 72%, rgba(34, 73, 117, 0) 82%),
            url("why-bg.webp");
        background-size: 100% 100%, 236% auto;
        background-position: top center, center bottom;
        background-repeat: no-repeat, no-repeat;
        background-repeat: no-repeat, no-repeat;
        min-height: 1200px;
    }

    .why-title {
        font-size: 24px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 44px;
        margin-bottom: 72px;
    }

    .why-icon {
        width: 85px;
        height: 85px;
        margin-bottom: 28px;
    }

    .why-icon svg {
        width: 36px;
        height: 36px;
    }

    .why-col-title {
        margin-bottom: 18px;
    }

    .why-col-text {
        max-width: 280px;
    }

    .why-quote-card {
        font-size: 13.5px;
        padding: 10px 16px;
        width: 88%;
        max-width: 88%;
        margin-left: auto;
        margin-right: auto;
        margin-top: -140px;
    }

    .why-image {
        aspect-ratio: 4 / 3;
    }
}

/* ============ OFERTA ESPECIAL (2 colunas) ============ */
.special {
    background: #eef2ff;
    padding: 56px 24px 72px;
}

.special-heading {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}

.special-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr);
    gap: 20px;
    align-items: center;
}

/* --- Coluna esquerda --- */
.special-left {
    text-align: center;
    max-width: 520px;
    justify-self: end;
    width: 100%;
}

.special-eyebrow {
    color: #6a4ce0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.4;
    margin-bottom: 18px;
}

.special-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 4px;
}

.special-title-big {
    display: block;
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
    margin-top: 6px;
    background: linear-gradient(90deg, #4a3ec9 0%, #7a5cff 50%, #4a3ec9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.special-oldline {
    font-size: 15px;
    color: var(--text-primary);
    margin-top: 22px;
    margin-bottom: 6px;
}

.special-oldline s {
    color: #b23a3a;
    text-decoration-thickness: 2px;
    margin: 0 4px;
}

.special-price {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin: 8px 0 28px;
    line-height: 1;
}

.special-price-currency {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 14px;
}

.special-price-value {
    font-size: 110px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -3px;
    line-height: 0.9;
}

.special-price-cents {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 8px;
}

.special-cta {
    display: inline-block;
    background: var(--success-green);
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    padding: 18px 34px;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 0 var(--success-green-dark);
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.2;
    transition: transform var(--transition), box-shadow var(--transition);
}

.special-cta:hover,
.special-cta:visited {
    color: #ffffff;
}

.special-cta:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 var(--success-green-dark);
}

.special-cta:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 var(--success-green-dark);
}

.special-limit {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    margin-top: 22px;
    margin-bottom: 10px;
}

.special-payments {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    opacity: 0.65;
}

.pay-logo {
    background: #d0d5df;
    color: #465063;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border-radius: 4px;
    min-width: 44px;
    text-align: center;
}

/* --- Coluna direita --- */
.special-right {
    position: relative;
    width: 100%;
    max-width: 720px;
    justify-self: start;
}

.offer-special-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 50px;
    transform: translateX(-50px);
}

.offer-special-image {
    display: block;
    width: 100%;
    max-width: 780px;
    height: auto;
    object-fit: contain;
}

.special-student {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #dfe6f5 0%, #cbd5eb 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
}

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

.special-logo-card {
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    background: var(--card-bg);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow);
    padding: 14px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    min-width: 240px;
}

.special-logo-card-brand {
    background: var(--marker-yellow);
    padding: 2px 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--text-primary);
    letter-spacing: 1.2px;
    line-height: 1;
}

.special-logo-card-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 4px;
    letter-spacing: 0.4px;
}

.special-discount {
    position: absolute;
    top: 44%;
    left: 42%;
    background: var(--success-green);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.special-float {
    position: absolute;
    background: var(--card-bg);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 12px 16px;
    max-width: 200px;
    font-size: 12px;
    line-height: 1.35;
    color: var(--text-secondary);
    z-index: 3;
}

.special-float strong {
    display: block;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
}

.special-float-comunhao {
    top: 20%;
    left: -4%;
}

.special-float-devocional {
    top: 22%;
    right: -6%;
}

.special-float-letra {
    top: 52%;
    left: -8%;
}

.special-asterisk {
    position: absolute;
    top: 6%;
    right: -8%;
    width: 26px;
    height: 26px;
    color: #6a4ce0;
    font-size: 28px;
    line-height: 1;
}

.special-asterisk::before {
    content: "✱";
    display: block;
}

@media (max-width: 960px) {
    .special-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .special-left,
    .special-right {
        justify-self: center;
        max-width: 520px;
    }

    .special-price-value {
        font-size: 90px;
    }

    .special-asterisk {
        display: none;
    }
}

@media (max-width: 560px) {
    .special {
        padding: 40px 16px 56px;
    }

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

    .special-left {
        text-align: center;
        max-width: 100%;
        justify-self: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .special-heading {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .special-eyebrow {
        text-align: center;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 12px;
    }

    .special-title {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 2px;
    }

    .special-title-big {
        font-size: 56px;
        letter-spacing: -1px;
    }

    .special-oldline {
        text-align: center;
        margin-top: 16px;
    }

    .special-price {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: baseline;
        gap: 2px;
        margin: 14px 0 18px;
    }

    .special-price-value {
        font-size: 122px;
        line-height: 0.9;
    }

    .special-price-currency {
        font-size: 26px;
        margin-top: 0;
        align-self: flex-start;
        transform: translateY(24px);
    }

    .special-price-cents {
        font-size: 30px;
        margin-top: 0;
        align-self: flex-start;
        transform: translateY(24px);
    }

    .special-cta {
        display: flex;
        width: 90%;
        max-width: 340px;
        margin: 0 auto;
        font-size: 16px;
        padding: 16px 24px;
    }

    .special-limit {
        margin-top: 12px;
        margin-bottom: 6px;
    }

    .special-payments {
        gap: 6px 12px;
        justify-content: center;
    }

    .pay-logo {
        min-width: 44px;
        padding: 6px 10px;
    }

    /* Coluna direita - imagem */
    .special-right {
        max-width: 100%;
        justify-self: center;
    }

    .offer-special-visual {
        margin-top: -21px;
        transform: none;
    }

    .offer-special-image {
        width: 118%;
        max-width: none;
        margin-left: -9%;
        height: auto;
    }

    /* Cards flutuantes */
    .special-float {
        max-width: 145px;
        font-size: 11px;
        padding: 8px 12px;
        line-height: 1.3;
    }

    .special-float strong {
        font-size: 12px;
    }

    .special-float-comunhao {
        top: 11%;
        left: -3%;
    }

    .special-float-devocional {
        top: 11%;
        right: -3%;
    }

    .special-float-letra {
        top: 55%;
        left: 0;
    }

    .special-discount {
        top: 22%;
        left: 40%;
    }
}

/* ============ CRIADO COM CARINHO ============ */
.creation {
    background: var(--marker-yellow);
    padding: 40px 24px 40px;
    position: relative;
}

.creation-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
}

.creation-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}

.created-with-love-composition {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    display: block;
    height: auto;
    position: relative;
}

.created-with-love-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.creation-mobile {
    display: none;
}

@media (max-width: 640px) {
    .creation {
        padding-bottom: 20px;
    }

    .creation-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .creation .created-with-love-david,
    .creation .created-with-love-composition {
        display: none;
    }

    .creation-mobile {
        display: block;
        width: 100%;
        max-width: none;
        height: auto;
        margin: 0 auto;
        padding-right: 16px;
        padding-left: 4px;
        box-sizing: border-box;
    }
}

.created-with-love-david {
    position: absolute;
    top: 90px;
    right: 200px;
    width: 257px;
    height: auto;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

.created-with-love-arrow-top {
    position: absolute;
    top: 123px;
    left: 383px;
    width: 75px;
    height: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    animation: arrowFloatVertical 2.2s ease-in-out infinite;
    will-change: transform;
}

@keyframes arrowFloatVertical {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .created-with-love-arrow-top {
        animation: none;
    }
}

.created-with-love-arrow-middle {
    position: absolute;
    top: 318px;
    left: 175px;
    width: 80px;
    height: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    animation: arrowFloatHorizontal 1.8s ease-in-out infinite;
    will-change: transform;
}

@keyframes arrowFloatHorizontal {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .created-with-love-arrow-middle {
        animation: none;
    }
}

.created-with-love-arrow-bottom {
    position: absolute;
    top: 425px;
    left: 384px;
    width: 78px;
    height: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    animation: arrowFloatHorizontalRight 1.8s ease-in-out infinite;
    will-change: transform;
}

@keyframes arrowFloatHorizontalRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .created-with-love-arrow-bottom {
        animation: none;
    }
}

.created-with-love-dots {
    position: absolute;
    bottom: 40px;
    left: 100px;
    width: 90px;
    height: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    animation: dotsFloatHorizontal 2.2s ease-in-out infinite;
    will-change: transform;
}

@keyframes dotsFloatHorizontal {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(35px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .created-with-love-dots {
        animation: none;
    }
}


@media (max-width: 960px) {
    .creation {
        padding: 40px 20px 40px;
    }
}

@media (max-width: 480px) {
    .creation-title {
        font-size: 26px;
        margin-bottom: 24px;
    }
}

/* ============ MATERIAL PERFEITO PARA ============ */
.audience {
    background: var(--background-cream);
    padding: 56px 24px 72px;
}

.audience-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
}

.audience-heading {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.audience-heading-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: -0.3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.audience-heading-title::before,
.audience-heading-title::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: var(--text-primary);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.audience-heading-title::before {
    align-self: center;
    order: -1;
}

.audience-heading-title::after {
    align-self: center;
    transform: rotate(180deg);
}

.audience-heading-line {
    height: 1px;
    background: var(--text-primary);
    opacity: 0.85;
    align-self: center;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.audience-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px 22px 28px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.audience-image {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-sm);
    background: #4a2a3d;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 16px;
    margin-bottom: 18px;
    overflow: hidden;
    position: relative;
}

.audience-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
    z-index: 0;
}

.audience-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, rgba(107, 74, 138, 0.55) 0%, rgba(179, 74, 90, 0.55) 55%, rgba(74, 42, 61, 0.65) 100%);
    z-index: 1;
    pointer-events: none;
}

.audience-image-label {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.2px;
    text-align: left;
    padding: 4px 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.audience-card-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 12px;
}

.audience-card-text {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

.audience-card-text em {
    font-style: italic;
    color: var(--text-primary);
}

@media (max-width: 1000px) {
    .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .audience {
        padding: 40px 16px 48px;
    }

    .audience-heading {
        gap: 16px;
        margin-bottom: 32px;
    }

    .audience-heading-title {
        font-size: 24px;
    }

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

/* ============ DEPOIMENTOS ============ */
.testimonials {
    background:
        repeating-linear-gradient(
            135deg,
            rgba(201, 160, 82, 0.05) 0 2px,
            transparent 2px 22px
        ),
        var(--background-cream);
    padding: 56px 24px 72px;
}

.testimonials-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
}

.testimonials-eyebrow {
    text-align: center;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonials-title {
    text-align: center;
    color: var(--dark-green);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin-bottom: 56px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 20px;
}

.testimonial-large {
    grid-column: span 2;
}

.testimonial {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    padding: 24px 28px 26px;
    display: flex;
    flex-direction: column;
}

.testimonial-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.testimonial-icons {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ec5b7a;
    font-size: 14px;
    line-height: 1;
}

.testimonial-icons svg {
    display: block;
}

.testimonial-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--image-bg);
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.testimonial-source svg {
    display: block;
    width: 11px;
    height: 11px;
}

.testimonial-text {
    color: var(--text-primary);
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    padding-left: 16px;
    flex: 1;
}

.testimonial-text::before {
    content: "\201C";
    position: absolute;
    left: -4px;
    top: -14px;
    font-size: 44px;
    color: #C89A3A;
    opacity: 0.55;
    font-family: Georgia, serif;
    line-height: 1;
    font-style: normal;
    font-weight: 700;
}

.testimonial-sep {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 0 0 14px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 59px;
    height: 59px;
    border-radius: var(--radius-pill);
    background: var(--image-bg);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 2.5px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
    justify-content: center;
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 14px;
}

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

.testimonial-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark-green);
    line-height: 1.2;
}

.testimonial-handle {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-large {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .testimonials {
        padding: 40px 16px 48px;
    }

    .testimonials-title {
        font-size: 26px;
        margin-bottom: 28px;
    }

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

    .testimonial-large {
        grid-column: span 1;
    }
}

/* ============ VÍDEO ============ */
.video-section {
    background: var(--background-cream);
    padding: 48px 24px 56px;
}

.video-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.video-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--headline-navy);
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--image-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 0 auto;
}

.video-frame img,
.video-frame iframe,
.video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    display: block;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 62px;
    background: #e53935;
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform var(--transition);
    padding: 0;
}

.video-play:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.video-play::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 22px solid #ffffff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 6px;
}

@media (max-width: 640px) {
    .video-section {
        padding: 32px 16px 40px;
    }

    .video-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .video-play {
        width: 68px;
        height: 48px;
        border-radius: 10px;
    }

    .video-play::before {
        border-left-width: 16px;
        border-top-width: 10px;
        border-bottom-width: 10px;
        margin-left: 4px;
    }
}

/* ============ ANTES / DEPOIS ============ */
.before-after {
    background: var(--card-bg);
    padding: 40px 24px 0;
    overflow: hidden;
}

.before-after-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding-bottom: 32px;
}

.before-after-image {
    width: 100%;
    aspect-ratio: 5 / 4.6;
    max-width: 662px;
    justify-self: end;
    background: transparent;
    border-radius: 0;
    transform: translateY(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
}

.before-after-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
}

.before-after-content {
    max-width: 500px;
}

.before-after-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 18px;
}

.before-after-content p strong {
    color: var(--dark-green);
    font-weight: 700;
}

.before-after-heading {
    font-size: 23px;
    font-weight: 900;
    color: var(--dark-green);
    line-height: 1.3;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.before-after-quote {
    border-left: 5px solid #C89A3A;
    padding: 14px 0 14px 22px;
    color: #C89A3A;
    font-size: 21px;
    font-weight: 800;
    font-style: italic;
    line-height: 1.45;
    margin-top: 20px;
}

/* Marquee */
.marquee {
    background: #ecc46a;
    overflow: hidden;
    padding: 14px 0;
    width: 100%;
    box-shadow: inset 0 -6px 10px -6px rgba(0, 0, 0, 0.18);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding-right: 22px;
    color: var(--marquee-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.marquee-item::after {
    content: "•";
    display: inline-block;
    color: var(--marquee-text);
}

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

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

@media (max-width: 900px) {
    .before-after {
        padding: 32px 20px 0;
    }

    .before-after-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 28px;
    }

    .before-after-image {
        justify-self: center;
    }

    .before-after-content {
        max-width: 100%;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .before-after {
        padding: 40px 10px 0;
    }

    .before-after-inner {
        display: flex;
        flex-direction: column;
    }

    .before-after-content {
        order: 1;
        max-width: 100%;
        text-align: center;
    }

    .before-after-image {
        order: 2;
        justify-self: center;
        transform: translateY(-28px);
    }

    .before-after-content p,
    .before-after-quote {
        font-size: 15px;
    }

    .before-after-heading {
        font-size: 18px;
    }

    .before-after-quote {
        border-left: none;
        border-top: 2px solid var(--gold);
        border-bottom: 2px solid var(--gold);
        padding: 8px 0;
        text-align: center;
        margin-top: 8px;
    }

    .marquee {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        border-radius: 0;
    }

    .marquee-item {
        font-size: 13px;
        gap: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 640px) {
    .offer {
        padding: 24px 16px 48px;
    }

    .offer-container {
        gap: 20px;
    }

    .quote-card {
        padding: 28px 24px;
        font-size: 16px;
        border-radius: 22px;
    }

    .bless-pill {
        padding: 9px 20px;
        font-size: 11px;
        letter-spacing: 0.8px;
    }

    .value-box {
        padding: 14px 20px;
        font-size: 15px;
    }

    .offer-card {
        padding: 16px 20px 18px;
    }

    .offer-badge {
        margin-bottom: 8px;
    }

    .offer-title {
        font-size: 19px;
        margin-bottom: 6px;
    }

    .offer-subtitle {
        margin-bottom: 10px;
    }

    .offer-prices {
        gap: 3px 12px;
    }

    .price-new {
        font-size: 26px;
    }

    .offer-cta {
        font-size: 15px;
        padding: 14px 20px;
    }

    .offer-cta-icon {
        width: 36px;
        height: 36px;
        right: 12px;
    }

    .offer-trust {
        margin-top: 16px;
    }
}
