
:root {
    --cream: #fbf6ef;
    --paper: #fffdf9;
    --olive: #34411c;
    --olive-dark: #263313;
    --wine: #761d2d;
    --wine-dark: #57121e;
    --gold: #c89645;
    --gold-soft: #e4c48d;
    --line: #e7d3b6;
    --ink: #423c35;
    --muted: #6f655c;
    --shadow: 0 18px 50px rgba(75, 54, 29, .09);
    --radius: 24px;
    --shell: 1210px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin-top: 0 !important;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.65;
}

#wpadminbar {
    display: none !important;
}

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

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

button {
    font: inherit;
}

.site-shell {
    width: min(calc(100% - 36px), var(--shell));
    margin-inline: auto;
}


/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 246, 239, .95);
    border-bottom: 1px solid rgba(200, 150, 69, .16);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 106px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    width: auto;
    height: 94px;
    object-fit: contain;
}

.brand-text {
    display: none;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    padding: 9px 0;
    color: #423b35;
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--wine);
    border-bottom-color: var(--gold);
}

.button {
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 13px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform .18s ease, filter .18s ease, background .18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, #3d4b20, #263313);
    box-shadow: 0 10px 24px rgba(38, 51, 19, .15);
}

.button-outline {
    color: var(--wine);
    border-color: var(--gold);
    background: rgba(255, 253, 249, .86);
}

.header-whatsapp {
    white-space: nowrap;
}

.button-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex: 0 0 auto;
}

.menu-toggle,
.mobile-nav {
    display: none;
}


/* HERO */
.hero-section {
    padding: 26px 0 42px;
}

.hero-card {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    border-radius: 34px;
    background: #f8f0e5;
    box-shadow: var(--shadow);
}

.hero-visual {
    position: absolute;
    inset: 0;
}

.hero-mobile-heading,
.hero-mobile-text {
    display: none;
}


.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-copy {
    position: relative;
    z-index: 2;
    width: 51%;
    min-height: 610px;
    padding: 54px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-copy h1 {
    max-width: 590px;
    margin: 0;
    color: var(--olive-dark);
    font: 500 clamp(48px, 5.1vw, 72px)/.98 "Cormorant Garamond", Georgia, serif;
    letter-spacing: -.025em;
}

.hero-copy h1 em {
    color: var(--wine);
    font-weight: 500;
}

.ornament-line {
    width: 235px;
    margin: 22px 0 12px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    color: var(--gold);
}

.ornament-line span {
    height: 1px;
    background: var(--gold);
}

.hero-description {
    max-width: 530px;
    margin: 0;
    color: #5f564f;
    font-size: 16px;
    line-height: 1.55;
}

.hero-actions {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-badges {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.hero-badges span {
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .74);
    color: #5c544d;
    font-size: 13px;
    font-weight: 600;
}


/* COMMON */
.section {
    padding: 58px 0;
}

.section-kicker {
    margin: 0 auto 22px;
    display: grid;
    grid-template-columns: minmax(48px, 110px) auto minmax(48px, 110px);
    gap: 12px;
    align-items: center;
    justify-content: center;
    color: var(--olive-dark);
}

.section-kicker.compact {
    margin-bottom: 24px;
}

.section-kicker span {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-kicker h2 {
    margin: 0;
    padding: 0 10px;
    text-align: center;
    font: 600 clamp(28px, 2.5vw, 38px)/1 "Cormorant Garamond", Georgia, serif;
    letter-spacing: .12em;
    color: var(--olive-dark);
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 249, .88);
    box-shadow: var(--shadow);
}


/* SERVICES */
.services-section {
    padding-top: 26px;
}

.services-art {
    display: block;
    width: 100%;
}

.services-art img {
    width: 100%;
    height: auto;
}


/* ABOUT */
.about-section {
    padding-top: 42px;
    background: rgba(255, 255, 255, .25);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.7fr .8fr;
    gap: 22px;
    align-items: stretch;
}

.about-copy {
    padding: 32px 34px;
}

.about-copy p {
    margin: 0 0 16px;
    color: #514941;
    font-size: 16px;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

.about-copy strong {
    color: var(--wine-dark);
}

.about-side {
    display: grid;
    gap: 16px;
}

.quote-card {
    margin: 0;
    min-height: 230px;
    padding: 30px 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--radius);
    color: #fff4e4;
    background:
        radial-gradient(circle at 25% 10%, rgba(201, 150, 69, .16), transparent 26%),
        linear-gradient(145deg, #681723, #811c2c 55%, #5b111d);
    box-shadow: var(--shadow);
}

.quote-mark {
    color: #edbf69;
    font: 700 52px/1 Georgia, serif;
}

.quote-card p {
    margin: -7px 0 0;
    text-align: center;
    font: 500 25px/1.24 "Cormorant Garamond", Georgia, serif;
}

.revista-card {
    padding: 19px 22px;
    display: flex;
    align-items: center;
    gap: 17px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fffaf3;
    box-shadow: 0 10px 28px rgba(75, 54, 29, .05);
}

.revista-icon {
    color: var(--olive);
    font-size: 38px;
}

.revista-card span:last-child {
    display: grid;
}

.revista-card small {
    color: #71665c;
}

.revista-card strong {
    color: var(--wine-dark);
    font: 600 31px/1 "Cormorant Garamond", Georgia, serif;
}

.revista-card em {
    margin-top: 5px;
    color: var(--olive);
    font-style: normal;
    font-weight: 600;
}


/* PROCESS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.process-item {
    min-height: 190px;
    padding: 18px 34px;
    text-align: center;
    position: relative;
}

.process-item + .process-item {
    border-left: 1px solid var(--line);
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: var(--wine-dark);
    font-family: "Inter", Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    font-variant-numeric: lining-nums tabular-nums;
}

.process-item h3 {
    margin: 0 0 8px;
    color: var(--olive-dark);
    font: 600 30px/1.05 "Cormorant Garamond", Georgia, serif;
}

.process-item p {
    max-width: 300px;
    margin: 0 auto;
    color: var(--muted);
}


/* TESTIMONIALS */
.testimonials-section {
    background: #f6ebdc;
}

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

.testimonial-card {
    min-height: 265px;
    margin: 0;
    padding: 27px 27px 52px;
    position: relative;
    border: 1px solid var(--line);
    border-radius: 21px;
    background: rgba(255, 253, 249, .90);
    box-shadow: 0 12px 32px rgba(86, 58, 27, .05);
}

.testimonial-card p {
    margin: 0;
    color: #514941;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 18px;
    line-height: 1.42;
}

.testimonial-card cite {
    display: block;
    margin-top: 17px;
    color: var(--olive-dark);
    font-style: normal;
    font-weight: 700;
}

.testimonial-card img {
    width: 38px;
    height: 38px;
    position: absolute;
    right: 20px;
    bottom: 13px;
    object-fit: contain;
}


/* CONTACT */
.contact-section {
    position: relative;
    background:
        radial-gradient(circle at 90% 15%, rgba(201, 150, 69, .10), transparent 26%),
        linear-gradient(180deg, #fffaf3 0%, #f8eee1 100%);
}

.contact-kicker {
    margin-bottom: 18px;
}

.contact-intro {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.contact-intro h3 {
    margin: 0 0 7px;
    color: var(--olive-dark);
    font: 600 clamp(36px, 3.5vw, 50px)/1 "Cormorant Garamond", Georgia, serif;
}

.contact-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.contact-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.contact-link-card {
    min-height: 120px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: rgba(255, 253, 249, .92);
    box-shadow: 0 10px 28px rgba(75, 54, 29, .05);
    transition: transform .18s ease, box-shadow .18s ease;
}

.contact-link-card[href]:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(75, 54, 29, .09);
}

.contact-link-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: grid;
    place-items: center;
}

.contact-link-icon img {
    width: 43px;
    height: 43px;
    object-fit: contain;
}

.contact-globe {
    border: 1px solid rgba(52, 65, 28, .20);
    border-radius: 50%;
    color: var(--olive);
    font: 600 31px/1 "Cormorant Garamond", Georgia, serif;
}

.contact-link-card > span:last-child {
    min-width: 0;
    display: grid;
}

.contact-link-card strong {
    color: var(--olive-dark);
    font: 600 25px/1.05 "Cormorant Garamond", Georgia, serif;
}

.contact-link-card small {
    margin-top: 4px;
    color: var(--wine-dark);
    font-size: 13px;
    font-weight: 700;
}

.contact-link-card em {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.35fr .75fr;
    gap: 20px;
    align-items: stretch;
}

.contact-copy-panel,
.contact-side-panel {
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.contact-copy-panel {
    padding: 30px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 249, .95);
}

.contact-eyebrow {
    color: var(--wine);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
}

.contact-copy-panel > h3,
.contact-side-panel h3 {
    margin: 7px 0 9px;
    font: 600 clamp(34px, 3vw, 46px)/1 "Cormorant Garamond", Georgia, serif;
}

.contact-copy-panel > h3 {
    color: var(--olive-dark);
}

.contact-copy-panel > p {
    max-width: 660px;
    margin: 0 0 21px;
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 6px;
}

.contact-form label > span {
    color: #5f554c;
    font-size: 12px;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #e3cfb1;
    border-radius: 12px;
    outline: none;
    background: #fffaf3;
    color: var(--ink);
    transition: border-color .16s ease, box-shadow .16s ease;
}

.contact-form input,
.contact-form select {
    height: 49px;
    padding: 0 14px;
}

.contact-form textarea {
    min-height: 120px;
    padding: 12px 14px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 150, 69, .10);
}

.contact-submit {
    justify-self: start;
    min-width: 230px;
}

.contact-side-panel {
    padding: 31px 28px;
    color: #fff6e7;
    background:
        radial-gradient(circle at 75% 12%, rgba(239, 195, 108, .18), transparent 28%),
        linear-gradient(145deg, #5e1420, #791b2a 58%, #4f1019);
}

.contact-eyebrow-light {
    color: #efc36c;
}

.contact-side-panel h3 {
    color: #fff6e7;
}

.contact-side-panel > p {
    margin: 0;
    color: #ead8cb;
}

.contact-side-points {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.contact-side-points div {
    display: grid;
    grid-template-columns: 39px 1fr;
    gap: 10px;
    align-items: center;
}

.contact-side-points b {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(239, 195, 108, .48);
    border-radius: 50%;
    color: #efc36c;
    font-size: 12px;
}

.contact-side-points span {
    color: #f5e8da;
    font-size: 13px;
}

.contact-side-button {
    width: 100%;
    color: #fff;
    border: 1px solid rgba(239, 195, 108, .48);
    background: #34411c;
}


/* FAQ */
.faq-list {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255, 253, 249, .9);
}

.faq-list summary {
    position: relative;
    padding: 17px 54px 17px 20px;
    cursor: pointer;
    list-style: none;
    color: #4b443e;
    font-weight: 700;
}

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

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 19px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 26px;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "–";
}

.faq-list p {
    margin: 0;
    padding: 0 20px 18px;
    color: var(--muted);
}


/* FOOTER */
.site-footer {
    position: relative;
    overflow: hidden;
    padding: 34px 0 14px;
    color: #fff8eb;
    background:
        radial-gradient(circle at 13% 120%, rgba(201, 150, 69, .14), transparent 30%),
        linear-gradient(135deg, #263313, #445324 55%, #263313);
}

.footer-grid {
    position: relative;
    z-index: 1;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1.4fr .9fr auto;
    gap: 28px;
    align-items: center;
}

.footer-message p {
    margin: 0;
    font: 500 28px/1.08 "Cormorant Garamond", Georgia, serif;
}

.footer-message strong {
    display: block;
    margin-top: 4px;
    color: #efc36c;
    font: 500 30px/1.05 "Cormorant Garamond", Georgia, serif;
}

.footer-contact {
    display: grid;
    gap: 8px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.contact-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex: 0 0 auto;
}

.button-footer {
    color: #fff9ed;
    border-color: rgba(238, 193, 108, .72);
    background: rgba(255, 255, 255, .03);
}

.disclaimer {
    position: relative;
    z-index: 1;
    margin-top: 22px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    text-align: center;
    color: #eadfc8;
    font-size: 12px;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 120;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 16px 34px rgba(38, 51, 19, .22);
}

.floating-whatsapp img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.basic-content {
    padding: 34px;
}


/* TABLET */
@media (max-width: 1050px) {
    .desktop-nav,
    .header-whatsapp {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        width: 48px;
        height: 48px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid var(--line);
        border-radius: 13px;
        background: #fffdfa;
    }

    .menu-toggle span {
        width: 22px;
        height: 2px;
        background: var(--olive);
    }

    .mobile-nav.is-open {
        display: block;
        border-top: 1px solid var(--line);
        background: var(--cream);
    }

    .mobile-nav-inner {
        padding: 14px 0 20px;
        display: grid;
        gap: 8px;
    }

    .mobile-nav-inner > a:not(.button) {
        padding: 12px 14px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fffdfa;
        font-weight: 700;
    }

    .hero-copy {
        width: 58%;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-side {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        padding-left: 105px;
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid > .button {
        grid-column: 1 / -1;
        justify-self: start;
    }
}


/* MOBILE */
@media (max-width: 767px) {
    .site-shell {
        width: min(calc(100% - 22px), var(--shell));
    }

    .header-inner {
        min-height: 82px;
        gap: 12px;
    }

    .brand {
        gap: 8px;
        min-width: 0;
    }

    .brand img {
        height: 60px;
        width: auto;
        max-width: 64px;
        flex: 0 0 auto;
    }

    .brand-text {
        display: block;
        color: var(--olive-dark);
        font: 600 22px/1 "Cormorant Garamond", Georgia, serif;
        letter-spacing: .01em;
        white-space: nowrap;
    }

    .hero-section {
        padding-top: 13px;
    }

    .hero-card {
        min-height: 0;
        overflow: hidden;
        border-radius: 25px;
        display: flex;
        flex-direction: column;
        background: #fff9f0;
    }

    .hero-visual {
        position: relative;
        inset: auto;
        width: 100%;
        order: 1;
    }

    .hero-image {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        object-position: center;
    }

    .hero-mobile-heading {
        display: block;
        position: absolute;
        top: 16px;
        left: 16px;
        width: 45%;
        max-width: 45%;
        z-index: 2;
    }

    .hero-mobile-heading h1 {
        margin: 0;
        color: var(--olive-dark);
        font: 500 clamp(26px, 7vw, 38px)/.94 "Cormorant Garamond", Georgia, serif;
        letter-spacing: -.02em;
        text-wrap: balance;
    }

    .hero-mobile-heading h1 em {
        color: var(--wine);
        font-style: italic;
        font-weight: 500;
    }

    .hero-copy {
        order: 2;
        width: 100%;
        min-height: 0;
        padding: 18px 18px 22px;
    }

    .hero-copy > h1,
    .ornament-line,
    .hero-description,
    .hero-badges {
        display: none;
    }

    .hero-mobile-text {
        display: block;
        margin-bottom: 16px;
    }

    .hero-mobile-text strong {
        display: block;
        margin: 0 0 6px;
        color: var(--olive-dark);
        font: 500 22px/1.08 "Cormorant Garamond", Georgia, serif;
    }

    .hero-mobile-text p {
        margin: 0;
        color: #5f564f;
        font-size: 15px;
        line-height: 1.5;
    }

    .hero-actions {
        display: grid;
        gap: 10px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .section {
        padding: 34px 0;
    }

    .services-section {
        padding-top: 18px;
    }

    .about-section,
    .process-section,
    .testimonials-section,
    .faq-section {
        padding-top: 26px;
    }

    .section-kicker,
    .section-kicker.compact {
        margin-bottom: 16px;
        grid-template-columns: 44px auto 44px;
        gap: 8px;
        text-align: center;
    }

    .section-kicker span {
        display: block;
    }

    .section-kicker h2 {
        padding: 0 4px;
        font-size: 22px;
        line-height: 1;
        letter-spacing: .1em;
    }

    .about-side {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        padding-left: 0;
    }

    .footer-grid > .button {
        justify-self: stretch;
    }

    .button-icon,
    .contact-icon {
        width: 18px;
        height: 18px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }

    .floating-whatsapp img {
        width: 54px;
        height: 54px;
    }

    .contact-intro {
        margin-bottom: 18px;
    }

    .contact-intro h3 {
        font-size: 34px;
    }

    .contact-links-grid,
    .contact-main-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-links-grid {
        gap: 10px;
        margin-bottom: 12px;
    }

    .contact-link-card {
        min-height: 94px;
        padding: 15px 16px;
    }

    .contact-copy-panel,
    .contact-side-panel {
        padding: 22px 18px;
        border-radius: 19px;
    }

    .contact-copy-panel > h3,
    .contact-side-panel h3 {
        font-size: 34px;
    }

    .contact-submit {
        width: 100%;
        min-width: 0;
    }

}


/* =========================================================
   Versão 1.7 — conteúdo ampliado, e-book, público e Vivências
   ========================================================= */

.micro-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--wine);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.therapy-copy-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.therapy-copy-card {
    padding: 19px 17px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,253,249,.88);
    box-shadow: 0 10px 25px rgba(75,54,29,.045);
}

.therapy-copy-card h3 {
    margin: 0 0 8px;
    color: var(--olive-dark);
    font: 600 24px/1.04 "Cormorant Garamond", Georgia, serif;
}

.therapy-copy-card p {
    margin: 0;
    color: #665e56;
    font-size: 13px;
    line-height: 1.52;
}

.ebook-gift-section {
    padding-top: 22px;
    padding-bottom: 54px;
}

.ebook-gift-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(280px,.72fr) 1.28fr;
    align-items: center;
    border: 1px solid rgba(200,150,69,.35);
    border-radius: 28px;
    background: linear-gradient(135deg, #fff9ef, #f4e6d4);
    box-shadow: var(--shadow);
}

.ebook-gift-image {
    align-self: stretch;
    min-height: 360px;
    background: #efe0cb;
}

.ebook-gift-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ebook-gift-copy {
    padding: 38px 42px;
}

.ebook-gift-copy h2 {
    margin: 0 0 13px;
    color: var(--olive-dark);
    font: 600 clamp(38px,4vw,56px)/1 "Cormorant Garamond", Georgia, serif;
}

.ebook-gift-copy p {
    max-width: 650px;
    margin: 0 0 22px;
    color: #5f574f;
    font-size: 16px;
}

.about-long {
    overflow: hidden;
    padding: 38px 40px;
}

.about-long-head {
    max-width: 850px;
    margin-bottom: 28px;
}

.about-long-head > span {
    color: var(--wine);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
}

.about-long-head h2 {
    margin: 8px 0 0;
    color: var(--olive-dark);
    font: 600 clamp(40px,4.2vw,58px)/1 "Cormorant Garamond", Georgia, serif;
}

.about-long-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.about-long-columns p {
    margin: 0 0 16px;
    color: #554d46;
    font-size: 15px;
    line-height: 1.72;
}

.about-closing {
    margin: 24px 0 0;
    padding: 22px 26px;
    border-left: 3px solid var(--gold);
    color: var(--wine-dark);
    background: #fbf2e7;
    font: 500 26px/1.22 "Cormorant Garamond", Georgia, serif;
}

.audience-section {
    padding-top: 44px;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.audience-card {
    padding: 30px 32px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.audience-yes {
    border: 1px solid #d9c6a5;
    background: #fffaf2;
}

.audience-no {
    color: #fdf7ea;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(145deg, #5e1521, #7c1c2a 55%, #50101a);
}

.audience-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
}

.audience-card h2 {
    margin: 0 0 12px;
    font: 600 clamp(34px,3.3vw,48px)/1 "Cormorant Garamond", Georgia, serif;
}

.audience-yes h2 { color: var(--olive-dark); }
.audience-no h2 { color: #fff5e6; }

.audience-card p {
    margin: 0 0 11px;
    line-height: 1.62;
}

.audience-yes p { color: #5f574f; }
.audience-no p { color: #f1ddcf; }

.testimonials-five {
    grid-template-columns: repeat(6, 1fr);
}

.testimonials-five .testimonial-card {
    grid-column: span 2;
}

.testimonials-five .testimonial-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.testimonials-five .testimonial-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.therapy-testimonial {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--wine);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.vivencias-cta-section {
    padding-top: 24px;
    padding-bottom: 44px;
}

.vivencias-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 34px 38px;
    border-radius: 26px;
    color: #fff6e7;
    background: linear-gradient(135deg, #2b3817, #4c5b27);
    box-shadow: var(--shadow);
}

.vivencias-cta-card h2 {
    margin: 0 0 8px;
    font: 600 42px/1 "Cormorant Garamond", Georgia, serif;
}

.vivencias-cta-card p {
    max-width: 720px;
    margin: 0;
    color: #ebe4d2;
}

.vivencias-cta-card .micro-kicker { color: #efc46e; }

.button-outline-light {
    min-width: 190px;
    color: #fff8e9;
    border-color: #e5bc67;
    background: rgba(255,255,255,.04);
}

.contact-copy-panel > p strong {
    color: var(--wine-dark);
}

.contact-icon-text {
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #8d1f2f;
    font-size: 9px;
}

/* VIVÊNCIAS */
.vivencias-page {
    background: var(--cream);
}

.vivencias-hero {
    padding: 72px 0 60px;
    color: #fff7e9;
    background: linear-gradient(135deg, #2b3818, #4b5927 55%, #6a1825);
}

.vivencias-hero-inner {
    max-width: 900px;
}

.vivencias-hero .micro-kicker { color: #efc36c; }

.vivencias-hero h1 {
    margin: 0;
    font: 600 clamp(48px,6vw,76px)/.96 "Cormorant Garamond", Georgia, serif;
}

.vivencias-hero p {
    max-width: 740px;
    margin: 18px 0 0;
    color: #eadfcb;
    font-size: 17px;
}

.vivencias-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vivencia-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fffaf3;
    box-shadow: var(--shadow);
}

.vivencia-caderno {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 30px;
    align-items: center;
    color: #fff5e9;
    background: linear-gradient(135deg, #55111d, #7b1b2a 58%, #4e101a);
}

.vivencia-caderno .micro-kicker { color: #efc36c; }
.vivencia-caderno h2 { color: #fff6e9; }
.vivencia-caderno p { color: #ead8ce; }

.vivencia-image {
    min-height: 360px;
    display: grid;
    place-items: center;
}

.vivencia-image img {
    max-width: 360px;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(0,0,0,.3));
}

.vivencia-copy h2,
.vivencia-card > h2 {
    margin: 0 0 10px;
    color: var(--olive-dark);
    font: 600 clamp(34px,3.5vw,50px)/1 "Cormorant Garamond", Georgia, serif;
}

.vivencia-copy p,
.vivencia-card > p {
    margin: 0 0 20px;
    color: #655c54;
    line-height: 1.62;
}

.vivencia-caderno .vivencia-copy h2 { color: #fff6e9; }
.vivencia-caderno .vivencia-copy p { color: #ead8ce; }

.vivencia-community {
    color: #fff6e9;
    background: linear-gradient(145deg, #304019, #52612a);
}

.vivencia-community .micro-kicker { color: #efc36c; }
.vivencia-community h2 { color: #fff6e9; }
.vivencia-community p { color: #e9e4d3; }

.button-light {
    color: #4f1520;
    background: #f1c977;
}

.vivencia-future {
    min-height: 250px;
}

.text-link {
    color: var(--wine);
    font-weight: 800;
}

.vivencias-bottom-cta {
    padding-top: 10px;
}

.vivencias-bottom-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 34px 38px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fffaf3;
}

.vivencias-bottom-card h2 {
    margin: 0 0 8px;
    color: var(--olive-dark);
    font: 600 42px/1 "Cormorant Garamond", Georgia, serif;
}

.vivencias-bottom-card p {
    max-width: 700px;
    margin: 0;
    color: #655d55;
}

@media (max-width: 1050px) {
    .therapy-copy-grid { grid-template-columns: repeat(2, 1fr); }
    .therapy-copy-card:last-child { grid-column: 1 / -1; }
    .testimonials-five { grid-template-columns: repeat(2,1fr); }
    .testimonials-five .testimonial-card,
    .testimonials-five .testimonial-card:nth-child(4),
    .testimonials-five .testimonial-card:nth-child(5) { grid-column: auto; }
    .testimonials-five .testimonial-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
    .therapy-copy-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 16px; }
    .therapy-copy-card:last-child { grid-column: auto; }
    .therapy-copy-card { padding: 17px 16px; }
    .therapy-copy-card h3 { font-size: 26px; }
    .therapy-copy-card p { font-size: 14px; }

    .ebook-gift-section { padding-top: 8px; padding-bottom: 36px; }
    .ebook-gift-card { grid-template-columns: 1fr; }
    .ebook-gift-image { min-height: 0; }
    .ebook-gift-image img { height: auto; object-fit: contain; }
    .ebook-gift-copy { padding: 26px 22px 28px; }
    .ebook-gift-copy h2 { font-size: 38px; }

    .about-long { padding: 26px 21px; }
    .about-long-head h2 { font-size: 40px; }
    .about-long-columns { grid-template-columns: 1fr; gap: 0; }
    .about-long-columns p { font-size: 15px; }
    .about-closing { font-size: 24px; }

    .audience-section { padding-top: 24px; }
    .audience-grid { grid-template-columns: 1fr; }
    .audience-card { padding: 26px 22px; }
    .audience-card h2 { font-size: 38px; }

    .testimonials-five { grid-template-columns: 1fr; }
    .testimonials-five .testimonial-card:last-child { grid-column: auto; }

    .vivencias-cta-card,
    .vivencias-bottom-card { flex-direction: column; align-items: flex-start; padding: 27px 23px; }
    .vivencias-cta-card h2,
    .vivencias-bottom-card h2 { font-size: 38px; }
    .button-outline-light { width: 100%; }

    .vivencias-hero { padding: 52px 0 44px; }
    .vivencias-hero h1 { font-size: 48px; }
    .vivencias-grid { grid-template-columns: 1fr; }
    .vivencia-caderno { grid-column: auto; grid-template-columns: 1fr; padding: 24px 22px; }
    .vivencia-image { min-height: 0; }
    .vivencia-image img { max-width: 270px; max-height: 320px; }
    .vivencia-card { padding: 25px 22px; }
}
