/* =========================================================
   KATLEN ARIANE — PSICANALISTA CLÍNICA
   STYLE.CSS PRINCIPAL
   Adaptado ao novo index
   ========================================================= */


/* =========================================================
   01. VARIÁVEIS
   ========================================================= */

:root {
    --bg: #faf7f3;
    --bg-soft: #f3eee8;
    --bg-white: #ffffff;

    --ink: #302c2b;
    --ink-soft: #625c59;
    --muted: #817a76;

    --purple: #76628f;
    --purple-dark: #59476f;
    --purple-light: #e8e0ee;

    --coral: #d98f7d;
    --coral-light: #f3ddd7;

    --yellow: #d9b35b;
    --yellow-light: #f3e8c9;

    --green: #25D366;
    --green-dark: #1da851;
    --green-soft: #e9f8ee;

    --border: rgba(48, 44, 43, .12);
    --border-strong: rgba(48, 44, 43, .18);

    --shadow-sm: 0 8px 24px rgba(48, 44, 43, .06);
    --shadow-md: 0 18px 45px rgba(48, 44, 43, .09);
    --shadow-lg: 0 30px 70px rgba(48, 44, 43, .12);

    --font-body: "DM Sans", sans-serif;
    --font-display: "Fraunces", serif;

    --container: 1180px;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 42px;

    --transition: .3s ease;
}


/* =========================================================
   02. RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    padding: 0;

    background: var(--bg);
    color: var(--ink);

    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;

    overflow-x: hidden;

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

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

::selection {
    background: var(--purple);
    color: #fff;
}


/* =========================================================
   03. CONTAINER
   ========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   04. SEÇÕES E ELEMENTOS GERAIS
   ========================================================= */

.section {
    position: relative;
    padding: 120px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: var(--purple);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    width: 28px;
    height: 1px;

    background: currentColor;
}

h1,
h2,
h3 {
    color: var(--ink);
}

h1,
h2 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -.035em;
}

h2 {
    margin-bottom: 24px;

    font-size: clamp(
        40px,
        5vw,
        62px
    );

    line-height: 1.08;
}

p {
    color: var(--ink-soft);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 26px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 600;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

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

.btn-primary {
    background: var(--purple);
    color: #fff;

    box-shadow:
        0 10px 24px rgba(118, 98, 143, .22);
}

.btn-primary:hover {
    background: var(--purple-dark);

    box-shadow:
        0 14px 30px rgba(118, 98, 143, .28);
}

.btn-outline {
    border: 1px solid var(--purple);
    color: var(--purple);
    background: transparent;
}

.btn-outline:hover {
    background: var(--purple);
    color: #fff;
}

.w-full {
    width: 100%;
}

.under-link {
    position: relative;

    display: inline-flex;

    color: var(--ink);

    font-size: 14px;
    font-weight: 600;
}

.under-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 100%;
    height: 1px;

    background: var(--coral);

    transform-origin: left;

    transition: transform var(--transition);
}

.under-link:hover::after {
    transform: scaleX(.65);
}


/* =========================================================
   05. HEADER
   ========================================================= */

.site-header {
    position: fixed;
    z-index: 1000;

    top: 18px;
    left: 0;
    right: 0;
}

.nav-inner {
    min-height: 78px;

    display: flex;
    align-items: center;
    gap: 30px;

    padding: 12px 22px;

    background: rgba(255, 255, 255, .82);

    border: 1px solid rgba(48, 44, 43, .08);
    border-radius: 22px;

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

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* =========================================================
   MARCA / LOGO
   ========================================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 11px;

    flex-shrink: 0;

    min-width: 175px;
}

.brand-logo {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

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

.brand-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;

    justify-content: center;

    min-width: 0;
}

.brand-name {
    color: var(--ink);

    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;

    line-height: 1.05;

    white-space: nowrap;
}

.brand-sub {
    margin-top: 5px;

    color: var(--muted);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: .085em;

    line-height: 1.2;

    white-space: nowrap;
}


/* =========================================================
   MENU
   ========================================================= */

.nav-menu {
    margin-left: auto;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-menu a {
    position: relative;

    color: var(--ink-soft);

    font-size: 12px;
    font-weight: 500;

    white-space: nowrap;

    transition: color var(--transition);
}

.nav-menu a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -7px;

    height: 1px;

    background: var(--coral);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform var(--transition);
}

.nav-menu a:hover {
    color: var(--ink);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   CTA DO HEADER
   ========================================================= */

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 18px;

    border-radius: 999px;

    background: var(--coral);
    color: #fff;

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

    transition:
        transform var(--transition),
        background var(--transition);
}

.header-cta:hover {
    background: #c97d6c;

    transform: translateY(-2px);
}


/* =========================================================
   MENU MOBILE
   ========================================================= */

.mobile-toggle {
    display: none;

    width: 44px;
    height: 44px;

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

    gap: 5px;

    background: transparent;

    cursor: pointer;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;

    border-radius: 5px;

    background: var(--ink);

    transition: var(--transition);
}


/* =========================================================
   06. HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 850px;

    display: flex;
    align-items: center;

    padding: 170px 0 110px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 83% 23%,
            rgba(118, 98, 143, .12),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 78%,
            rgba(217, 143, 125, .09),
            transparent 28%
        ),
        var(--bg);
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: .95fr 1.05fr;

    align-items: center;

    gap: 80px;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.hero-copy h1 {
    max-width: 650px;

    margin-bottom: 28px;

    font-size: clamp(
        54px,
        6.3vw,
        82px
    );

    line-height: .98;
}

.hero-copy h1 em {
    display: block;

    color: var(--purple);

    font-style: normal;
}

.hero-copy > p {
    max-width: 580px;

    margin-bottom: 28px;

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

.target-audience {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 34px;
}

.target-audience span {
    display: inline-flex;

    padding: 7px 13px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 600;
}

.audience-family {
    background: var(--purple-light);
    color: var(--purple-dark);
}

.audience-women {
    background: var(--coral-light);
    color: #9d5c4c;
}

.audience-children {
    background: var(--yellow-light);
    color: #806521;
}

.audience-teens {
    background: #e3ece6;
    color: #56715f;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;

    margin-bottom: 24px;
}

.hero-caption {
    display: block;

    max-width: 330px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.6;
}

.hero-visual {
    position: relative;

    min-height: 590px;

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

.hero-image {
    position: relative;
    z-index: 2;

    width: min(100%, 500px);
    height: 590px;

    overflow: hidden;

    border-radius:
        52% 48% 45% 55% /
        44% 50% 50% 56%;

    background: var(--purple-light);

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

.hero-image img {
    width: 100%;
    height: 100%;

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

    transition: transform 1s ease;
}

.hero-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   FORMAS DECORATIVAS DO HERO
   ========================================================= */

.hero-orb,
.hero-stroke {
    position: absolute;

    display: block;

    border-radius: 50%;

    pointer-events: none;
}

.hero-orb-purple {
    width: 110px;
    height: 110px;

    top: 150px;
    left: 4%;

    background: var(--purple-light);

    opacity: .85;
}

.hero-orb-coral {
    width: 80px;
    height: 80px;

    right: 5%;
    bottom: 140px;

    background: var(--coral-light);

    opacity: .9;
}

.hero-stroke {
    width: 170px;
    height: 170px;

    right: 12%;
    top: 110px;

    border: 1px solid rgba(118, 98, 143, .18);

    background: transparent;
}

.shape-tag {
    position: absolute;
    z-index: 5;

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

    width: 112px;
    height: 112px;

    aspect-ratio: 1 / 1;

    padding: 0;

    border-radius: 50%;

    font-family: var(--font-display);
    font-size: 16px;

    text-align: center;

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

.shape-tag-coral {
    left: 0;
    bottom: 100px;

    background: var(--coral);
    color: #fff;

    transform: rotate(-10deg);
}

.shape-tag-yellow {
    width: 126px;
    height: 126px;

    right: 5px;
    top: 55px;

    background: var(--yellow);
    color: #fff;

    transform: rotate(8deg);
}

.hero-bottom {
    position: absolute;

    left: -10%;
    right: -10%;
    bottom: -100px;

    height: 180px;

    background: var(--bg-soft);

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


/* =========================================================
   07. SOBRE
   ========================================================= */

.about {
    background: var(--bg-soft);
}

.about-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    align-items: center;

    gap: 100px;
}

.about-image {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;

    border-radius: 48% 52% 20px 20px;

    background:
        linear-gradient(
            135deg,
            var(--purple-light),
            var(--coral-light)
        );

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

.about-image::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    top: 60px;
    right: -70px;

    border-radius: 50%;

    background: var(--yellow);

    opacity: .7;
}

.about-image::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -100px;
    bottom: -90px;

    border-radius: 50%;

    background: var(--purple);

    opacity: .15;
}

.about-image span {
    position: relative;
    z-index: 2;

    margin-bottom: 40px;

    padding: 10px 16px;

    border-radius: 999px;

    background: rgba(255,255,255,.7);

    color: var(--muted);

    font-size: 11px;

    backdrop-filter: blur(10px);
}

.about-image i {
    position: absolute;

    width: 190px;
    height: 310px;

    bottom: 0;

    border-radius:
        100px 100px 0 0;

    background: rgba(255,255,255,.32);
}

.about-copy {
    max-width: 640px;
}

.about-copy h2 {
    max-width: 560px;
}

.about-copy p {
    max-width: 620px;

    font-size: 17px;
    line-height: 1.8;
}

.about-copy .btn {
    margin-top: 15px;
}


/* =========================================================
   08. ATENDIMENTOS
   ========================================================= */

.audiences {
    background: var(--bg);
}

.section-heading {
    display: grid;

    grid-template-columns: 1fr .75fr;

    align-items: end;

    gap: 70px;

    margin-bottom: 55px;
}

.section-heading > p {
    max-width: 450px;

    margin-bottom: 7px;

    font-size: 16px;
}

.section-heading.centered {
    display: block;

    max-width: 700px;

    margin-inline: auto;

    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading.centered p {
    max-width: 560px;

    margin-inline: auto;
}

.audience-grid {
    display: grid;

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

    gap: 16px;
}

.audience-card {
    position: relative;

    min-height: 370px;

    display: flex;
    flex-direction: column;

    padding: 32px;

    overflow: hidden;

    border-radius: var(--radius-md);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.audience-card:hover {
    transform: translateY(-7px);

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

.audience-card > span {
    font-size: 11px;
    font-weight: 600;

    opacity: .7;
}

.audience-card h3 {
    margin-top: auto;
    margin-bottom: 15px;

    font-family: var(--font-display);

    font-size: 32px;
    font-weight: 500;
}

.audience-card p {
    margin: 0;

    font-size: 14px;
    line-height: 1.65;
}

.audience-card b {
    position: absolute;

    width: 95px;
    height: 95px;

    right: -25px;
    bottom: -25px;

    border-radius: 50%;

    background: rgba(255,255,255,.28);
}

.audience-card.family {
    background: var(--purple-light);
}

.audience-card.family h3 {
    color: var(--purple-dark);
}

.audience-card.women {
    background: var(--coral-light);
}

.audience-card.women h3 {
    color: #9d5c4c;
}

.audience-card.children {
    background: var(--yellow-light);
}

.audience-card.children h3 {
    color: #806521;
}

.audience-card.teens {
    background: #e3ece6;
}

.audience-card.teens h3 {
    color: #56715f;
}


/* =========================================================
   09. PSICANÁLISE
   ========================================================= */

.psicanalise {
    background: var(--bg);
}

.psicanalise-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 100px;

    align-items: center;
}

.psicanalise-quote {
    padding: 55px;

    border-radius: var(--radius-xl);

    background: var(--purple-light);
}

.psicanalise-quote blockquote {
    margin: 20px 0;

    color: var(--purple-dark);

    font-family: var(--font-display);

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.15;
}

.psicanalise-quote cite {
    color: var(--muted);

    font-size: 13px;

    font-style: normal;
}

.psicanalise-copy {
    max-width: 650px;
}

.psicanalise-copy h2 {
    max-width: 600px;
}

.psicanalise-copy p {
    max-width: 620px;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   10. NEURODESENVOLVIMENTO / NEUROCIÊNCIA
   ========================================================= */

.neuro {
    background: var(--bg-soft);
}

.neuro-card {
    position: relative;

    min-height: 530px;

    display: grid;

    grid-template-columns: 1fr .75fr;

    align-items: center;

    gap: 70px;

    padding: 80px;

    overflow: hidden;

    border-radius: var(--radius-xl);

    background: var(--purple-dark);

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

.neuro-card::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -170px;
    top: -170px;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 50%;
}

.neuro-copy {
    position: relative;
    z-index: 2;
}

.neuro-copy .eyebrow {
    color: #dfcfe9;
}

.neuro-copy h2 {
    max-width: 680px;

    color: #fff;
}

.neuro-copy p {
    max-width: 650px;

    color: rgba(255,255,255,.72);

    font-size: 16px;
}

.neuro-art {
    position: relative;

    min-height: 330px;

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

.neuro-art::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(217, 143, 125, .28);
}

.neuro-art::after {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.22);
}

.neuro-art span {
    position: relative;
    z-index: 3;

    color: #fff;

    font-family: var(--font-display);

    font-size: 25px;

    transform: rotate(-8deg);
}

.neuro-art i {
    position: absolute;

    width: 60px;
    height: 60px;

    top: 10px;
    right: 25px;

    border-radius: 50%;

    background: var(--yellow);
}

.neuro-art b {
    position: absolute;

    width: 80px;
    height: 80px;

    left: 15px;
    bottom: 25px;

    border-radius: 50%;

    background: var(--coral);
}


/* =========================================================
   11. ESPIRITUALIDADE
   ========================================================= */

.spirituality {
    background: var(--bg);
}

.spirituality-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;
}

.spirituality-copy {
    max-width: 590px;
}

.spirituality-copy h2 {
    max-width: 560px;
}

.spirituality-copy p {
    max-width: 570px;

    margin-bottom: 20px;

    font-size: 17px;

    line-height: 1.8;
}

.spirituality-copy small {
    display: block;

    margin-top: -8px;

    color: var(--muted);

    font-size: 12px;

    font-style: italic;
}

.spirituality-highlight {
    position: relative;

    width: 100%;
    height: 1px;

    margin-top: 32px;

    background: var(--border);
}

.spirituality-highlight span {
    position: absolute;

    left: 0;
    top: 50%;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--coral);

    transform: translateY(-50%);
}

.spirituality-image {
    position: relative;

    min-height: 560px;

    display: flex;

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

.spirituality-image-frame {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 540px;

    height: 560px;

    overflow: hidden;

    border-radius: 42px;

    background: var(--purple-light);

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

.spirituality-image-frame picture,
.spirituality-image-frame img {
    width: 100%;
    height: 100%;
}

.spirituality-image-frame img {
    object-fit: cover;

    object-position: center;

    transition: transform 1s ease;
}

.spirituality-image-frame:hover img {
    transform: scale(1.025);
}

.spirituality-orb {
    position: absolute;

    z-index: 3;

    display: block;

    border-radius: 50%;

    pointer-events: none;
}

.spirituality-orb-purple {
    width: 100px;
    height: 100px;

    left: -35px;
    bottom: 50px;

    background: var(--purple-light);
}

.spirituality-orb-coral {
    width: 75px;
    height: 75px;

    right: -20px;
    top: 35px;

    background: var(--coral-light);
}

.spirituality-word {
    position: absolute;

    z-index: 4;

    right: 25px;
    bottom: 20px;

    width: 105px;
    height: 105px;

    border-radius: 50%;

    background: var(--yellow);

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

.spirituality-word::after {
    content: "presença";

    position: absolute;

    inset: 0;

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

    padding: 10px;

    color: #fff;

    font-family: var(--font-display);

    font-size: 15px;

    text-align: center;

    transform: rotate(-8deg);
}


/* =========================================================
   12. PRIMEIRA CONSULTA
   ========================================================= */

.first {
    background: var(--bg);
}

.first-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 100px;

    align-items: start;
}

.first-copy h2 {
    max-width: 520px;
}

.first-copy p {
    max-width: 500px;

    font-size: 17px;
}

.steps {
    display: flex;
    flex-direction: column;
}

.step {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 25px;

    padding: 28px 0;

    border-bottom: 1px solid var(--border);
}

.step:first-child {
    padding-top: 0;
}

.step:last-child {
    border-bottom: 0;
}

.step > span {
    width: 54px;
    height: 54px;

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

    border-radius: 50%;

    background: var(--purple-light);

    color: var(--purple-dark);

    font-size: 12px;
    font-weight: 600;
}

.step h3 {
    margin-bottom: 6px;

    font-family: var(--font-display);

    font-size: 25px;
    font-weight: 500;
}

.step p {
    margin: 0;

    font-size: 14px;
}


/* =========================================================
   13. DEPOIMENTOS
   ========================================================= */

.testimonials {
    background: var(--bg-soft);
}

.testimonial-grid {
    display: grid;

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

    gap: 18px;

    align-items: start;
}


/* =========================================================
   CARDS
   ========================================================= */

.testimonial-card {
    position: relative;

    height: 430px;
    min-height: 430px;

    display: flex;
    flex-direction: column;

    padding: 35px;

    border-radius: var(--radius-md);

    background: #fff;

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

    overflow: hidden;

    transition:
        height .35s ease,
        box-shadow .3s ease;
}


/* =========================================================
   CARD EM DESTAQUE
   ========================================================= */

.testimonial-card.featured {
    transform: translateY(-12px);

    background: var(--purple);

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


/* =========================================================
   CARD ABERTO
   ========================================================= */

.testimonial-card.is-expanded {
    height: auto;
    min-height: 430px;

    overflow: visible;
}


/* =========================================================
   ASPAS
   ========================================================= */

.quote-mark {
    margin-bottom: 15px;

    color: var(--coral);

    font-family: var(--font-display);

    font-size: 55px;

    line-height: .8;

    flex-shrink: 0;
}


/* =========================================================
   ÁREA DO TEXTO
   ========================================================= */

.testimonial-content {
    position: relative;

    max-height: 205px;

    overflow: hidden;

    transition:
        max-height .35s ease;
}


/* =========================================================
   FADE NO FINAL DO TEXTO
   ========================================================= */

.testimonial-content::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 70px;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0),
            #fff
        );

    pointer-events: none;
}

.testimonial-card.featured .testimonial-content::after {
    background:
        linear-gradient(
            to bottom,
            rgba(118,98,143,0),
            var(--purple)
        );
}


/* =========================================================
   TEXTO DO DEPOIMENTO
   ========================================================= */

.testimonial-card p {
    margin: 0;

    font-family: var(--font-display);

    font-size: 21px;

    line-height: 1.45;
}

.testimonial-card.featured p {
    color: rgba(255,255,255,.9);
}


/* =========================================================
   CARD ABERTO — TEXTO COMPLETO
   ========================================================= */

.testimonial-card.is-expanded .testimonial-content {
    max-height: 2000px;

    overflow: visible;
}

.testimonial-card.is-expanded .testimonial-content::after {
    display: none;
}


/* =========================================================
   BOTÃO — CONTINUE LENDO
   ========================================================= */

.testimonial-toggle {
    position: relative;
    z-index: 3;

    align-self: flex-start;

    margin-top: 16px;
    margin-bottom: 18px;

    padding: 0;

    background: transparent;

    color: var(--purple-dark);

    font-family: var(--font-body);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.4;

    cursor: pointer;

    transition:
        color .25s ease,
        opacity .25s ease;
}

.testimonial-toggle::after {
    content: " →";

    display: inline-block;

    transition:
        transform .25s ease;
}

.testimonial-toggle:hover {
    color: var(--coral);

    opacity: .85;
}


/* =========================================================
   BOTÃO DO CARD ROXO
   ========================================================= */

.testimonial-card.featured .testimonial-toggle {
    color: rgba(255,255,255,.9);
}

.testimonial-card.featured .testimonial-toggle:hover {
    color: #fff;
}


/* =========================================================
   MOSTRAR MENOS
   ========================================================= */

.testimonial-card.is-expanded .testimonial-toggle::after {
    content: " ↑";
}


/* =========================================================
   RODAPÉ DO CARD
   ========================================================= */

.testimonial-card small {
    position: relative;
    z-index: 2;

    margin-top: auto;

    color: var(--muted);

    font-size: 11px;
}

.testimonial-card.featured small {
    color: rgba(255,255,255,.65);
}


/* =========================================================
   ELEMENTO DECORATIVO
   ========================================================= */

.testimonial-card i {
    position: absolute;

    width: 90px;
    height: 90px;

    right: -25px;
    bottom: -25px;

    border-radius: 50%;

    background: var(--coral-light);

    pointer-events: none;
}

.testimonial-card.featured i {
    background: rgba(255,255,255,.08);
}


/* =========================================================
   RESPONSIVO — DEPOIMENTOS
   ========================================================= */

@media (max-width: 820px) {

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

    .testimonial-card {
        height: 400px;
        min-height: 400px;
    }

    .testimonial-card.featured {
        transform: none;
    }

    .testimonial-card.is-expanded {
        height: auto;
        min-height: 400px;
    }

    .testimonial-content {
        max-height: 185px;
    }

    .testimonial-card p {
        font-size: 19px;

        line-height: 1.5;
    }
}


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

@media (max-width: 520px) {

    .testimonial-card {
        height: 400px;
        min-height: 400px;

        padding: 28px;
    }

    .testimonial-content {
        max-height: 185px;
    }

    .testimonial-card p {
        font-size: 19px;

        line-height: 1.5;
    }

    .testimonial-toggle {
        margin-top: 14px;
        margin-bottom: 16px;
    }
}


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

@media (max-width: 360px) {

    .testimonial-card {
        height: 390px;
        min-height: 390px;

        padding: 24px;
    }

    .testimonial-content {
        max-height: 175px;
    }

    .testimonial-card p {
        font-size: 18px;
    }
}


/* =========================================================
   14. CONTATO
   ========================================================= */

.contact {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(118,98,143,.12),
            transparent 25%
        ),
        var(--bg-soft);
}

.contact-shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.contact-purple {
    width: 280px;
    height: 280px;

    right: -100px;
    top: -80px;

    background: var(--purple-light);
}

.contact-coral {
    width: 190px;
    height: 190px;

    left: -80px;
    bottom: -80px;

    background: var(--coral-light);
}

.contact-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 90px;

    align-items: start;
}

.contact-intro h2 {
    max-width: 520px;
}

.contact-intro > p {
    max-width: 470px;

    font-size: 17px;
}

.registration-box {
    display: inline-flex;

    flex-direction: column;

    margin-top: 20px;

    padding: 17px 20px;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: rgba(255,255,255,.55);
}

.registration-box small {
    color: var(--muted);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.registration-box strong {
    margin-top: 3px;

    color: var(--purple-dark);

    font-size: 13px;
}


/* =========================================================
   15. FORMULÁRIO
   ========================================================= */

.contact-form {
    padding: 40px;

    border: 1px solid rgba(48,44,43,.08);

    border-radius: 28px;

    background: rgba(255,255,255,.88);

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

    backdrop-filter: blur(15px);
}

#main-form {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

#main-form input,
#main-form select,
#main-form textarea {
    width: 100%;

    border: 1px solid var(--border);

    border-radius: 12px;

    outline: none;

    background: #fff;

    color: var(--ink);

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

#main-form input,
#main-form select {
    height: 56px;

    padding: 0 17px;
}

#main-form textarea {
    min-height: 140px;

    padding: 16px 17px;

    resize: vertical;
}

#main-form input::placeholder,
#main-form textarea::placeholder {
    color: #aaa3a0;
}

#main-form select {
    color: var(--muted);

    cursor: pointer;
}

#main-form input:focus,
#main-form select:focus,
#main-form textarea:focus {
    border-color: var(--purple);

    background: #fff;

    box-shadow:
        0 0 0 4px rgba(118,98,143,.09);
}

.consent {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin: 4px 0 8px;

    cursor: pointer;
}

.consent input {
    width: 17px !important;
    height: 17px !important;

    flex-shrink: 0;

    margin-top: 3px;

    accent-color: var(--purple);
}

.consent span {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   16. PRIVACIDADE
   ========================================================= */

.privacy {
    background: var(--bg);
}

.privacy-content {
    max-width: 800px;

    margin-inline: auto;
}

.privacy-content p {
    max-width: 760px;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   17. FOOTER
   ========================================================= */

.site-footer {
    padding: 80px 0 25px;

    background: #2e2a29;

    color: rgba(255,255,255,.7);
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 60px;
}

.footer-brand .brand-name {
    color: #fff;
}

.footer-brand .brand-sub {
    color: rgba(255,255,255,.45);
}

.footer-brand p {
    max-width: 300px;

    margin-top: 20px;

    color: rgba(255,255,255,.6);

    font-size: 13px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 9px;
}

.footer-title {
    margin-bottom: 8px;

    color: #fff;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.footer-grid a,
.footer-grid > div > span:not(.footer-title) {
    color: rgba(255,255,255,.58);

    font-size: 12px;

    transition: color var(--transition);
}

.footer-grid a:hover {
    color: #fff;
}

.social-links {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.footer-title-small {
    margin-top: 18px;
}

.footer-bottom {
    padding-top: 24px;

    border-top: 1px solid rgba(255,255,255,.1);

    color: rgba(255,255,255,.4);

    font-size: 10px;
}


/* =========================================================
   18. WHATSAPP FLUTUANTE
   ========================================================= */

.whatsapp-float {
    position: fixed;

    z-index: 9999;

    right: 24px;
    bottom: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 56px;

    padding: 0 22px;

    border-radius: 999px;

    background: var(--green);

    color: #fff;

    font-size: 13px;
    font-weight: 600;

    line-height: 1;

    box-shadow:
        0 12px 30px rgba(37, 211, 102, .28);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.whatsapp-float:hover {
    background: var(--green-dark);

    color: #fff;

    transform: translateY(-4px);

    box-shadow:
        0 17px 38px rgba(37, 211, 102, .35);
}

.whatsapp-float svg {
    width: 25px;
    height: 25px;

    flex-shrink: 0;

    display: block;

    fill: currentColor;
}

.whatsapp-float span {
    display: inline-flex;
    align-items: center;
}


/* =========================================================
   19. ACESSIBILIDADE
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(118,98,143,.35);

    outline-offset: 3px;
}

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }
}


/* =========================================================
   20. TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .nav-menu ul {
        gap: 14px;
    }

    .nav-menu a {
        font-size: 11px;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero-copy h1 {
        font-size: clamp(50px, 7vw, 70px);
    }

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

    .neuro-card {
        padding: 60px;
    }

    .spirituality-grid {
        gap: 55px;
    }

    .spirituality-image-frame {
        height: 500px;
    }

    .spirituality-image {
        min-height: 500px;
    }

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


/* =========================================================
   21. MOBILE
   ========================================================= */

@media (max-width: 820px) {

    .container {
        width: min(
            calc(100% - 32px),
            var(--container)
        );
    }

    .section {
        padding: 85px 0;
    }


    /* =====================================================
       HEADER
       ===================================================== */

    .site-header {
        top: 10px;

        left: 50%;
        right: auto;

        width: calc(100% - 24px);

        transform: translateX(-50%);
    }

    .nav-inner {
        min-height: 68px;

        padding: 10px 16px;

        border-radius: 18px;
    }


    /* =====================================================
       MARCA
       ===================================================== */

    .brand {
        gap: 9px;

        min-width: 0;
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .brand-name {
        font-size: 19px;
    }

    .brand-sub {
        margin-top: 4px;

        font-size: 7px;

        letter-spacing: .065em;
    }


    /* =====================================================
       MENU
       ===================================================== */

    .nav-menu {
        position: absolute;

        top: calc(100% + 10px);

        left: 50%;
        right: auto;

        width: 100%;
        max-width: 100%;

        display: none;

        padding: 18px;

        border-radius: 18px;

        background: rgba(255,255,255,.96);

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

        backdrop-filter: blur(20px);

        transform: translateX(-50%);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;

        align-items: center;

        gap: 0;
    }

    .nav-menu li {
        width: 100%;

        text-align: center;

        border-bottom: 1px solid var(--border);
    }

    .nav-menu li:last-child {
        border-bottom: 0;
    }

    .nav-menu a {
        display: block;

        width: 100%;

        padding: 12px 5px;

        font-size: 14px;

        text-align: center;
    }

    .nav-menu a::after {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;

        margin-left: auto;
    }


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

    .hero {
        min-height: auto;

        padding:
            140px 0
            85px;
    }

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

        gap: 55px;
    }

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

    .hero-copy .eyebrow {
        justify-content: center;
    }

    .hero-copy h1 {
        font-size: clamp(
            48px,
            14vw,
            68px
        );
    }

    .hero-copy > p {
        margin-inline: auto;

        font-size: 16px;
    }

    .target-audience {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-caption {
        margin-inline: auto;
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-image {
        width: min(100%, 420px);

        height: 500px;
    }


    /* =====================================================
       FORMAS DO HERO
       ===================================================== */

    .hero-orb-purple {
        width: 75px;
        height: 75px;

        left: 2%;
        top: 130px;
    }

    .hero-orb-coral {
        width: 60px;
        height: 60px;

        right: 2%;
        bottom: 110px;
    }

    .hero-stroke {
        width: 110px;
        height: 110px;

        right: 4%;
        top: 80px;
    }

    .shape-tag-coral {
        left: 3%;

        bottom: 70px;
    }

    .shape-tag-yellow {
        right: 2%;

        top: 30px;
    }


    /* =====================================================
       SOBRE
       ===================================================== */

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

        gap: 50px;
    }

    .about-image {
        min-height: 450px;

        max-width: 500px;

        margin-inline: auto;

        width: 100%;
    }


    /* =====================================================
       HEADINGS
       ===================================================== */

    .section-heading {
        grid-template-columns: 1fr;

        gap: 10px;

        margin-bottom: 38px;
    }

    .section-heading > p {
        margin: 0;
    }


    /* =====================================================
       ATENDIMENTO
       ===================================================== */

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

    .audience-card {
        min-height: 300px;
    }


    /* =====================================================
       PSICANÁLISE
       ===================================================== */

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

        gap: 50px;
    }

    .psicanalise-quote {
        padding: 40px 30px;
    }


    /* =====================================================
       NEURO
       ===================================================== */

    .neuro-card {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px 30px;

        border-radius: 30px;
    }

    .neuro-art {
        min-height: 260px;
    }


    /* =====================================================
       ESPIRITUALIDADE
       ===================================================== */

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

        gap: 50px;
    }

    .spirituality-copy {
        max-width: 100%;
    }

    .spirituality-image {
        min-height: 450px;

        order: 2;
    }

    .spirituality-copy {
        order: 1;
    }

    .spirituality-image-frame {
        width: 100%;
        max-width: 500px;

        height: 450px;

        margin-inline: auto;
    }

    .spirituality-orb-purple {
        left: -15px;
        bottom: 35px;
    }

    .spirituality-orb-coral {
        right: -10px;
        top: 25px;
    }


    /* =====================================================
       PRIMEIRA CONSULTA
       ===================================================== */

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

        gap: 50px;
    }


    /* =====================================================
       DEPOIMENTOS
       ===================================================== */

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

    .testimonial-card.featured {
        transform: none;
    }


    /* =====================================================
       CONTATO
       ===================================================== */

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

        gap: 50px;
    }

    .contact-form {
        padding: 25px;
    }


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

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

        gap: 45px 30px;
    }


    /* =====================================================
       WHATSAPP MOBILE — SVG
       ===================================================== */

    .whatsapp-float {
        width: 56px;
        height: 56px;

        min-height: 56px;

        padding: 0;

        right: 18px;
        bottom: 18px;

        border-radius: 50%;

        gap: 0;

        box-shadow:
            0 10px 28px rgba(37, 211, 102, .30);
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;

        display: block;

        flex-shrink: 0;

        fill: currentColor;
    }

    .whatsapp-float:hover {
        transform: translateY(-3px);

        background: var(--green-dark);

        box-shadow:
            0 14px 32px rgba(37, 211, 102, .36);
    }
}


/* =========================================================
   22. MOBILE PEQUENO
   ========================================================= */

@media (max-width: 520px) {

    .container {
        width: calc(100% - 28px);
    }

    .section {
        padding: 72px 0;
    }

    h2 {
        font-size: 40px;
    }


    /* =====================================================
       HEADER
       ===================================================== */

    .site-header {
        left: 50%;
        right: auto;

        width: calc(100% - 16px);

        transform: translateX(-50%);
    }


    /* =====================================================
       MARCA
       ===================================================== */

    .brand {
        gap: 8px;
    }

    .brand-logo {
        width: 34px;
        height: 34px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-sub {
        font-size: 6px;

        letter-spacing: .045em;
    }


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

    .hero {
        padding-top: 125px;
    }

    .hero-copy h1 {
        font-size: 47px;

        line-height: 1;
    }

    .hero-copy > p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;

        width: 100%;
    }

    .hero-actions .btn,
    .hero-actions .under-link {
        width: 100%;
    }

    .hero-actions .under-link {
        justify-content: center;
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero-image {
        height: 430px;
    }

    .shape-tag {
        width: 85px;
        height: 85px;

        font-size: 13px;
    }

    .shape-tag-coral {
        left: 0;
        bottom: 45px;
    }

    .shape-tag-yellow {
        width: 95px;
        height: 95px;

        right: 0;
        top: 20px;
    }


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

    .hero-orb-purple {
        width: 55px;
        height: 55px;
    }

    .hero-orb-coral {
        width: 45px;
        height: 45px;
    }

    .hero-stroke {
        width: 80px;
        height: 80px;
    }


    /* =====================================================
       SOBRE
       ===================================================== */

    .about-image {
        min-height: 380px;
    }


    /* =====================================================
       ESPIRITUALIDADE
       ===================================================== */

    .spirituality-grid {
        gap: 40px;
    }

    .spirituality-copy p {
        font-size: 15px;
    }

    .spirituality-image {
        min-height: 380px;
    }

    .spirituality-image-frame {
        height: 380px;

        border-radius: 28px;
    }

    .spirituality-orb-purple {
        width: 65px;
        height: 65px;

        left: -8px;
        bottom: 25px;
    }

    .spirituality-orb-coral {
        width: 50px;
        height: 50px;

        right: -5px;
        top: 18px;
    }

    .spirituality-word {
        width: 82px;
        height: 82px;

        right: 10px;
        bottom: 10px;
    }

    .spirituality-word::after {
        font-size: 12px;
    }


    /* =====================================================
       CARDS
       ===================================================== */

    .audience-card {
        min-height: 280px;

        padding: 28px;
    }


    /* =====================================================
       NEURO
       ===================================================== */

    .neuro-card {
        padding: 38px 24px;
    }

    .neuro-copy h2 {
        font-size: 38px;
    }


    /* =====================================================
       STEPS
       ===================================================== */

    .step {
        grid-template-columns: 55px 1fr;

        gap: 16px;
    }

    .step > span {
        width: 48px;
        height: 48px;
    }


    /* =====================================================
       FORM
       ===================================================== */

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }


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

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


    /* =====================================================
       WHATSAPP SVG
       ===================================================== */

    .whatsapp-float {
        width: 52px;
        height: 52px;

        min-height: 52px;

        right: 14px;
        bottom: 14px;

        border-radius: 50%;

        padding: 0;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;

        display: block;

        fill: currentColor;
    }
}


/* =========================================================
   23. TELAS MUITO PEQUENAS
   ========================================================= */

@media (max-width: 360px) {

    .site-header {
        width: calc(100% - 12px);
    }

    .brand-logo {
        width: 31px;
        height: 31px;
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-sub {
        font-size: 5.5px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 36px;
    }

    .target-audience span {
        font-size: 10px;
    }

    .hero-image {
        height: 390px;
    }

    .hero-visual {
        min-height: 390px;
    }


    /* =====================================================
       ESPIRITUALIDADE
       ===================================================== */

    .spirituality-image {
        min-height: 340px;
    }

    .spirituality-image-frame {
        height: 340px;
    }

    .spirituality-word {
        width: 70px;
        height: 70px;
    }

    .spirituality-word::after {
        font-size: 10px;
    }


    /* =====================================================
       WHATSAPP SVG
       ===================================================== */

    .whatsapp-float {
        width: 50px;
        height: 50px;

        min-height: 50px;

        right: 12px;
        bottom: 12px;

        border-radius: 50%;

        padding: 0;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;

        display: block;

        fill: currentColor;
    }
}
