/* Filosofia visual deste arquivo: editorial sensorial com estética Japandi, calor mineral,
   assimetria elegante, respiro visual e foco comercial na divulgação de massoterapeutas assinantes. */
:root {
    --bg: #f6f0e6;
    --bg-soft: #fbf7f1;
    --panel: rgba(255, 251, 245, 0.82);
    --panel-strong: rgba(255, 248, 239, 0.94);
    --text: #3c3127;
    --text-soft: #6b5d4f;
    --line: rgba(125, 104, 78, 0.12);
    --primary: #456247;
    --primary-dark: #314a35;
    --accent: #c9a880;
    --shadow: 0 24px 80px rgba(83, 65, 42, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(173, 164, 140, 0.18), transparent 26%),
        linear-gradient(180deg, #f8f4ed 0%, #f1eadf 52%, #eadfce 100%);
    color: var(--text);
}

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

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

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

.page-shell {
    min-height: 100vh;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(248, 242, 232, 0.78);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 18px;
    height: 52px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), var(--primary));
    box-shadow: 0 8px 20px rgba(69, 98, 71, 0.2);
}

.brand-text {
    display: grid;
    gap: 4px;
}

.brand-text strong,
.display-title,
.section-title,
.profile-name {
    font-family: "Cormorant Garamond", Georgia, serif;
}

.brand-text strong {
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.brand-text small {
    color: var(--text-soft);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--text-soft);
    font-weight: 600;
}

.main-nav a:hover,
.footer-links a:hover {
    color: var(--primary);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
    background: var(--primary);
    color: #f9f6ef;
    box-shadow: 0 14px 30px rgba(69, 98, 71, 0.24);
}

.button-secondary {
    background: rgba(255, 250, 244, 0.7);
    border-color: rgba(125, 104, 78, 0.18);
    color: var(--text);
}

.button-whatsapp {
    background: #1f7a47;
    color: #fff;
}

.hero {
    padding: 72px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    align-items: stretch;
}

.hero-copy,
.hero-visual,
.panel,
.profile-main,
.profile-side,
.cta-band,
.highlight-card,
.gallery-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    background: var(--panel);
    backdrop-filter: blur(14px);
}

.hero-copy {
    padding: 48px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 251, 245, 0.76);
    border: 1px solid var(--line);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
    color: var(--text-soft);
}

.display-title {
    margin: 18px 0 18px;
    font-size: clamp(3.3rem, 6vw, 6.2rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
}

.hero-copy p,
.section-intro,
.profile-bio,
.info-list span,
.hero-bullets li,
.stat-card p,
.footer-copy {
    color: var(--text-soft);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-bullets {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-bullets li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), var(--primary));
    flex: none;
}

.hero-visual {
    position: relative;
    overflow: hidden;
    min-height: 620px;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: auto 24px 24px 24px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(47, 38, 29, 0.56);
    color: #fff7ef;
    backdrop-filter: blur(10px);
}

.hero-overlay strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.section {
    padding: 42px 0 84px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.section-title {
    margin: 12px 0 16px;
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.stats-grid,
.benefits-grid,
.professionals-grid,
.profile-meta,
.gallery-grid,
.modalities-grid {
    display: grid;
    gap: 20px;
}

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

.stat-card,
.highlight-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255, 251, 245, 0.72);
}

.stat-card strong,
.highlight-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 2rem;
    font-family: "Cormorant Garamond", Georgia, serif;
}

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

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

.professional-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--panel);
    box-shadow: var(--shadow);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.professional-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 90px rgba(83, 65, 42, 0.16);
    border-color: rgba(69, 98, 71, 0.26);
}

.professional-cover {
    height: 270px;
}

.professional-cover img,
.gallery-card img,
.profile-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.professional-body {
    padding: 24px;
}

.profile-name {
    margin: 0 0 10px;
    font-size: 2.2rem;
    letter-spacing: -0.03em;
}

.location-chip,
.modality-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 250, 244, 0.78);
    color: var(--text-soft);
    font-size: 0.9rem;
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.cta-band {
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(201, 168, 128, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(255, 251, 245, 0.94) 0%, rgba(247, 239, 229, 0.92) 100%);
}

.cta-band-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.profile-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.profile-main,
.profile-side {
    padding: 32px;
}

.profile-side {
    position: sticky;
    top: 110px;
}

.profile-photo {
    height: 360px;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 24px;
}

.profile-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 24px 0;
}

.info-card {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 250, 244, 0.74);
    border: 1px solid var(--line);
}

.info-card strong {
    display: block;
    margin-bottom: 8px;
}

.info-list {
    display: grid;
    gap: 16px;
}

.info-list a {
    color: var(--primary-dark);
    font-weight: 700;
}

.modalities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.gallery-card {
    height: 220px;
    overflow: hidden;
}

.site-footer {
    padding: 28px 0 40px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.footer-title {
    margin: 0 0 6px;
    font-weight: 800;
}

.footer-links {
    display: flex;
    gap: 22px;
    color: var(--text-soft);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-grid,
    .profile-layout,
    .benefits-grid,
    .professionals-grid,
    .stats-grid,
    .gallery-grid,
    .cta-band-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .profile-side {
        position: static;
    }

    .main-nav {
        display: none;
    }
}

@media (max-width: 720px) {
    .header-inner,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding-top: 34px;
    }

    .hero-copy,
    .hero-visual,
    .profile-main,
    .profile-side,
    .cta-band {
        padding: 22px;
        min-height: auto;
    }

    .display-title {
        font-size: 3rem;
    }

    .professional-cover,
    .profile-photo,
    .gallery-card {
        height: 220px;
    }

    .profile-meta,
    .modalities-grid {
        grid-template-columns: 1fr;
    }
}
