﻿/* Tokens alinhados à marca real: marigold #FCBF16 + tinta quente + papel.
   O marigold pode ser sobrescrito pelo painel (settings marca.cor_primaria)
   via <style> inline no layout. */
:root {
    --bg: #f6f3ec;
    --bg-soft: #fbf9f3;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: rgba(255, 255, 255, 0.97);
    --border: rgba(20, 16, 12, 0.12);
    --ink: #14110c;
    --muted: #6a6152;
    --gold: #fcbf16;
    --gold-deep: #e0a50c;
    --gold-ink: #4a3a06;
    --kicker: #8a6410;
    --dark: #14110c;
    --shadow: 0 24px 60px rgba(32, 24, 13, 0.08);
}

body[data-theme="dark"] {
    --bg: #100e0a;
    --bg-soft: #16130d;
    --surface: rgba(25, 22, 16, 0.92);
    --surface-strong: rgba(25, 22, 16, 0.97);
    --border: rgba(255, 255, 255, 0.1);
    --ink: #f3eee1;
    --muted: #a89f8c;
    --gold: #fcbf16;
    --gold-deep: #fdd766;
    --kicker: #f1c86a;
    --gold-ink: #14110c;
    --dark: #0d0b07;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(252, 191, 22, 0.09), transparent 22%),
        linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-soft) 26%, var(--bg) 100%);
}

img,
iframe {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1280px, calc(100% - 44px));
    margin: 0 auto;
}

.container--bleed {
    width: min(1440px, calc(100% - 18px));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(253, 249, 241, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(18, 15, 13, 0.06);
}

.inclusion-badge {
    position: fixed;
    left: 20px;
    bottom: 22px;
    z-index: 39;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.inclusion-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 34px rgba(18, 15, 13, 0.2));
}

.inclusion-badge:hover {
    transform: scale(1.04);
}

.inclusion-badge::after {
    content: attr(data-tooltip);
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(18, 15, 13, 0.92);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.inclusion-badge:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}

main {
    overflow: hidden;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 15px 0;
}

.brand img {
    width: 188px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo--light {
    display: none;
}

body[data-theme="dark"] .brand-logo--dark {
    display: none;
}

body[data-theme="dark"] .brand-logo--light {
    display: block;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.theme-toggle {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4px;
    width: 70px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(18, 15, 13, 0.12);
    background: rgba(255, 255, 255, 0.76);
    padding: 4px;
    color: var(--muted);
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(18, 15, 13, 0.08);
}

.theme-toggle span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.theme-toggle__sun {
    background: rgba(232, 176, 56, 0.16);
    color: var(--gold-deep);
}

.theme-toggle__moon {
    color: rgba(18, 15, 13, 0.46);
}

body[data-theme="dark"] .theme-toggle__sun {
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
}

body[data-theme="dark"] .theme-toggle__moon {
    background: rgba(232, 176, 56, 0.16);
    color: #f5d27d;
    transform: translateX(0);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    position: relative;
    color: var(--muted);
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    transform: scaleX(1);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 15px 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--gold-ink);
    background: linear-gradient(135deg, #fdd257 0%, var(--gold) 52%, var(--gold-deep) 100%);
    box-shadow: 0 18px 40px rgba(252, 191, 22, 0.28);
}

a.button[href*="wa.me"]::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.5 3.5A11.4 11.4 0 0 0 2.8 17.1L1 23l6-1.6a11.4 11.4 0 0 0 5 .9h.1A11.5 11.5 0 0 0 20.5 3.5Zm-8.4 16.9h-.1a9.3 9.3 0 0 1-4.7-1.3l-.3-.2-3.5.9.9-3.4-.2-.3a9.3 9.3 0 1 1 7.9 4.3Zm5.1-7c-.3-.2-1.7-.8-2-.9-.3-.1-.5-.2-.7.2s-.8.9-1 1.1c-.2.2-.4.2-.7 0a7.5 7.5 0 0 1-2.2-1.3 8.2 8.2 0 0 1-1.5-1.9c-.2-.3 0-.5.1-.7l.5-.6c.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5l-.7-1.8c-.2-.5-.4-.4-.7-.4h-.6c-.2 0-.5.1-.8.4s-1 1-1 2.4 1 2.7 1.2 2.9c.2.2 2 3.1 4.8 4.3.7.3 1.3.5 1.7.7.7.2 1.3.2 1.8.1.6-.1 1.7-.7 1.9-1.4.2-.7.2-1.3.2-1.4 0-.1-.2-.2-.5-.3Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.5 3.5A11.4 11.4 0 0 0 2.8 17.1L1 23l6-1.6a11.4 11.4 0 0 0 5 .9h.1A11.5 11.5 0 0 0 20.5 3.5Zm-8.4 16.9h-.1a9.3 9.3 0 0 1-4.7-1.3l-.3-.2-3.5.9.9-3.4-.2-.3a9.3 9.3 0 1 1 7.9 4.3Zm5.1-7c-.3-.2-1.7-.8-2-.9-.3-.1-.5-.2-.7.2s-.8.9-1 1.1c-.2.2-.4.2-.7 0a7.5 7.5 0 0 1-2.2-1.3 8.2 8.2 0 0 1-1.5-1.9c-.2-.3 0-.5.1-.7l.5-.6c.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5l-.7-1.8c-.2-.5-.4-.4-.7-.4h-.6c-.2 0-.5.1-.8.4s-1 1-1 2.4 1 2.7 1.2 2.9c.2.2 2 3.1 4.8 4.3.7.3 1.3.5 1.7.7.7.2 1.3.2 1.8.1.6-.1 1.7-.7 1.9-1.4.2-.7.2-1.3.2-1.4 0-.1-.2-.2-.5-.3Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button-primary[href*="wa.me"]::before,
.button-dark[href*="wa.me"]::before,
.button-dark-outline[href*="wa.me"]::before {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
}

.button-secondary,
.button-outline {
    color: var(--ink);
    background: transparent;
    border-color: rgba(18, 15, 13, 0.22);
}

.button-dark {
    color: #fff;
    background: var(--dark);
}

.button-dark-outline {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
}

.button-outline::after {
    content: " \2192";
}

.kicker {
    color: var(--kicker);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 800;
    font-size: 0.75rem;
    margin-bottom: 18px;
}

.eyebrow-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.eyebrow-pill,
.eyebrow-note,
.promotion-tag,
.plan-badge,
.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.eyebrow-pill,
.promotion-tag {
    padding: 8px 14px;
    background: rgba(232, 176, 56, 0.12);
    color: var(--gold-deep);
    border: 1px solid rgba(232, 176, 56, 0.22);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.eyebrow-note {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 15, 13, 0.08);
    color: var(--muted);
    font-size: 0.82rem;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: -0.03em;
    line-height: 0.98;
}

h1 {
    max-width: 10ch;
    font-size: clamp(3.6rem, 7vw, 6.4rem);
}

h2 {
    font-size: clamp(2.5rem, 4.8vw, 4.6rem);
}

h3 {
    font-size: 1.9rem;
}

h4 {
    font-size: 1.1rem;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.headline-accent {
    display: inline-block;
    color: var(--gold-deep);
    font-style: italic;
}

.hero {
    padding: 0 0 22px;
}

.hero-copy {
    max-width: 360px;
}

.hero-copy__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    background: rgba(232, 176, 56, 0.1);
    border: 1px solid rgba(232, 176, 56, 0.2);
    color: var(--gold-deep);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-copy h1 {
    max-width: 10.5ch;
    font-size: clamp(3.4rem, 5.8vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero-copy > p {
    max-width: 42ch;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-actions--center {
    justify-content: center;
}

.plan-card,
.service-card,
.promotion-card,
.review-card,
.review-cta,
.info-card,
.feature-strip__card,
.contact-card,
.contact-form-panel,
.comparison-table,
.page-end-cta__box {
    border: 1px solid var(--border);
    background: var(--surface-strong);
    box-shadow: var(--shadow);
}

.mini-stats strong,
.about-stats strong {
    display: block;
}

.hero-stage {
    position: relative;
    --shift-x: 0px;
    --shift-y: 0px;
}

.team-card,
.gallery-mosaic__item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(18, 15, 13, 0.16);
}

.hero-slide img,
.team-card img,
.gallery-mosaic__item img,
.split-story__image img,
.two-column-story__media img,
.about-split__media img,
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: var(--gold);
    letter-spacing: 0.16em;
}

.hero-stage--slider {
    display: grid;
    gap: 14px;
}

.hero-stage--cinematic {
    position: relative;
    width: 100%;
    margin-top: 0;
}

.hero-slider-frame {
    position: relative;
    aspect-ratio: 1.95 / 1;
    min-height: clamp(460px, 52vw, 720px);
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    background: transparent;
    box-shadow: none;
    transform: translate3d(calc(var(--shift-x) * 0.45), calc(var(--shift-y) * 0.45), 0);
    transition: transform 0.35s ease;
    z-index: 1;
}

.hero-slider-frame--cinematic::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18, 15, 13, 0.8) 0%, rgba(18, 15, 13, 0.54) 34%, rgba(18, 15, 13, 0.18) 62%, rgba(18, 15, 13, 0.48) 100%),
        linear-gradient(180deg, rgba(18, 15, 13, 0.18), rgba(18, 15, 13, 0.38));
    z-index: 1;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 15, 13, 0.04), rgba(18, 15, 13, 0.18));
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    padding: clamp(34px, 5vw, 72px);
    gap: 22px;
}

.hero-overlay__line {
    width: 2px;
    align-self: stretch;
    max-height: 480px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.06));
}

.hero-copy--overlay {
    width: min(100%, 540px);
    max-width: 46%;
    color: #fff;
}

.hero-copy--overlay .hero-copy__eyebrow {
    background: transparent;
    border: 0;
    color: #e4d4a0;
    padding: 0;
    min-height: auto;
    margin-bottom: 16px;
}

.hero-copy--overlay h1,
.hero-copy--overlay p {
    color: #fff;
}

.hero-copy--overlay p {
    color: rgba(255, 255, 255, 0.84);
}

.hero-actions--inline {
    align-items: center;
    flex-wrap: nowrap;
}

.hero-slider-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 2px;
}

.hero-slider-meta--overlay {
    position: absolute;
    left: clamp(34px, 5vw, 72px);
    right: clamp(34px, 5vw, 72px);
    bottom: 26px;
    z-index: 3;
    padding-left: 0;
    justify-content: flex-end;
}

.hero-slider-label {
    display: inline-flex;
    margin-bottom: 8px;
    color: #d7c487;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 800;
    font-size: 0.68rem;
}

.hero-slider-caption {
    max-width: 28ch;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.55;
}

.hero-dots {
    display: inline-flex;
    gap: 10px;
}

.hero-dots--interactive {
    flex-shrink: 0;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    transition: width 0.25s ease, border-radius 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
    width: 34px;
    border-radius: 999px;
    background: var(--gold);
}

.brand-band {
    padding: 20px 0 0;
}

.brand-band__track {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 24px;
    border-top: 1px solid rgba(18, 15, 13, 0.08);
    border-bottom: 1px solid rgba(18, 15, 13, 0.08);
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.77rem;
    font-weight: 800;
}

.section {
    padding: 96px 0;
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading--center {
    max-width: 820px;
    text-align: center;
}

.section-heading--center h2 {
    margin-bottom: 14px;
}

.section-heading--center p {
    max-width: 740px;
    margin: 0 auto;
}

.section-services-overview {
    padding-top: 54px;
    padding-bottom: 28px;
}

.section-action {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
}

.split-story__grid,
.two-column-story,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: stretch;
}

.split-story__image,
.two-column-story__media {
    align-self: stretch;
    min-height: 100%;
}

.split-story__image img,
.two-column-story__media img {
    min-height: 440px;
    height: 100%;
    border-radius: 24px;
}

.split-story__content h2,
.two-column-story__copy h2 {
    max-width: 15ch;
    margin-bottom: 20px;
    text-wrap: balance;
}

.split-story__content,
.two-column-story__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini-stats,
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 36px 0 30px;
    padding-top: 32px;
    border-top: 1px solid rgba(18, 15, 13, 0.14);
}

.mini-stats strong,
.about-stats strong {
    margin-bottom: 4px;
    color: var(--gold-deep);
    font-size: 3rem;
    font-family: "Cormorant Garamond", serif;
}

.mini-stats span,
.about-stats span {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.84rem;
}

.feature-strip,
.plan-grid,
.service-grid--four,
.service-grid--listing,
.promotion-grid,
.reviews-grid,
.footer-grid,
.info-card-grid,
.team-grid,
.gallery-mosaic {
    display: grid;
    gap: 24px;
}

.feature-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-strip__card,
.info-card,
.contact-card {
    padding: 24px;
    border-radius: 18px;
}

.feature-strip__dot {
    width: 8px;
    height: 8px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}

.plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card {
    position: relative;
    padding: 34px 32px 32px;
    border-radius: 18px;
}

.plan-card.is-highlight {
    border-color: rgba(232, 176, 56, 0.8);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 18px;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.plan-card h3 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.plan-card p {
    min-height: 72px;
}

.plan-price {
    margin: 26px 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    line-height: 1;
}

.plan-price small {
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    color: var(--muted);
}

.plan-card ul {
    padding: 0;
    margin: 0 0 26px;
    list-style: none;
    display: grid;
    gap: 12px;
}

.plan-card li::before {
    content: "\2605";
    margin-right: 10px;
    color: var(--gold);
}

.service-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-showcase {
    display: grid;
    gap: 28px;
}

.service-showcase__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.service-showcase__status {
    min-width: 68px;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-nav-button {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(18, 15, 13, 0.12);
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.service-nav-button:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: rgba(232, 176, 56, 0.5);
    background: rgba(232, 176, 56, 0.08);
}

.service-nav-button:disabled {
    opacity: 0.38;
    cursor: default;
}

.service-grid--listing {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
    overflow: hidden;
    border-radius: 18px;
}

.service-card.is-hidden {
    display: none;
}

.service-card img {
    height: 240px;
}

.service-card__content {
    padding: 20px 24px 24px;
}

.service-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.73rem;
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.service-card p {
    min-height: 92px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(18, 15, 13, 0.12);
}

.service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
}

.service-card__footer strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.service-link {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
}

.service-link::after {
    content: " \2192";
}

.promotion-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.section-extra-plans {
    padding-top: 24px;
}

.mini-plan-slider {
    display: grid;
    gap: 22px;
}

.mini-plan-slider__viewport {
    overflow: hidden;
}

.mini-plan-slider__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 72px) / 4);
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.mini-plan-card {
    display: grid;
    gap: 14px;
    min-height: 100%;
    padding: 24px 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface-strong);
    box-shadow: var(--shadow);
}

.mini-plan-card h3 {
    font-size: 1.7rem;
}

.mini-plan-card strong {
    color: var(--gold-deep);
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
}

.mini-plan-card p {
    min-height: 88px;
}

.mini-plan-slider__dots {
    display: inline-flex;
    justify-content: center;
    gap: 10px;
}

.mini-plan-slider__dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(18, 15, 13, 0.2);
    cursor: pointer;
    transition: width 0.24s ease, border-radius 0.24s ease, background 0.24s ease;
}

.mini-plan-slider__dots button.is-active {
    width: 34px;
    border-radius: 999px;
    background: var(--gold);
}

.promotion-card {
    padding: 32px;
    border-radius: 18px;
    border-color: rgba(232, 176, 56, 0.45);
}

.promotion-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.promotion-mark {
    color: var(--gold);
    font-size: 1.6rem;
}

.promotion-card h3 {
    margin-bottom: 14px;
    font-size: 2rem;
}

.promotion-meta {
    margin: 18px 0 24px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
}

.reviews-wrap {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 260px;
    gap: 18px;
    align-items: start;
}

.score-value {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 14px 0 12px;
    font-size: 3rem;
    font-weight: 800;
}

.reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card,
.review-cta {
    border-radius: 18px;
    padding: 22px;
}

.reviews-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(18, 15, 13, 0.08);
    font-size: 0.9rem;
    line-height: 1.55;
}

.reviews-note--success {
    background: rgba(68, 167, 96, 0.1);
    border-color: rgba(68, 167, 96, 0.24);
    color: #1d5a30;
}

.reviews-note--warning {
    background: rgba(232, 176, 56, 0.12);
    border-color: rgba(232, 176, 56, 0.28);
    color: #6f4c09;
}

.review-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4d381, #d49a1f);
    color: var(--ink);
    font-weight: 800;
}

.review-avatar-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-cta {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: center;
}

.google-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbc05, #34a853, #4285f4, #ea4335);
    color: #fff;
    font-weight: 800;
}

.page-hero {
    padding: 82px 0 78px;
    background: linear-gradient(180deg, rgba(246, 240, 229, 0.7) 0%, rgba(250, 246, 239, 0.9) 100%);
    border-bottom: 1px solid rgba(18, 15, 13, 0.06);
}

.page-hero--center .page-hero__content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.page-title {
    max-width: none;
    margin-bottom: 18px;
}

.page-hero__content p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.narrative-section,
.dark-band {
    background: rgba(255, 255, 255, 0.22);
}

.info-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card h3 {
    margin-bottom: 12px;
    font-size: 1.7rem;
}

.step-index {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--gold-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card {
    background: var(--surface-strong);
    box-shadow: var(--shadow);
}

.team-card img {
    height: 300px;
}

.team-card__content {
    padding: 18px 18px 22px;
}

.team-card__content h3 {
    margin-bottom: 4px;
    font-size: 1.6rem;
}

.team-card__content span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--gold-deep);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
}

.gallery-mosaic {
    grid-template-columns: 1.15fr 0.75fr 0.75fr;
    grid-template-rows: 240px 240px 240px;
}

.gallery-mosaic__item {
    min-height: 100%;
}

.gallery-mosaic__item--1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-mosaic__item--2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.gallery-mosaic__item--3 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.gallery-mosaic__item--4 {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
}

.gallery-mosaic__item--5 {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
}

.comparison-table {
    overflow: auto;
    border-radius: 18px;
}

.comparison-table table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(18, 15, 13, 0.08);
    text-align: left;
}

.comparison-table th {
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.comparison-table td:nth-child(3),
.comparison-table th:nth-child(3) {
    color: var(--gold-deep);
    font-weight: 800;
}

.dark-band {
    padding: 92px 0;
    background: var(--dark);
}

.dark-band .section-heading h2,
.dark-band .info-card h3,
.dark-band .info-card p {
    color: #fff;
}

.info-card-grid--dark .info-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(18, 15, 13, 0.12);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin-top: 14px;
    max-width: 78ch;
}

.page-end-cta__box {
    max-width: 900px;
    margin: 0 auto;
    padding: 44px;
    border-radius: 24px;
    text-align: center;
}

.page-end-cta__box h2 {
    max-width: 17ch;
    margin: 0 auto 16px;
    font-size: clamp(2.5rem, 4.6vw, 4.1rem);
    text-wrap: balance;
    line-height: 1.02;
}

.page-end-cta__box p {
    max-width: 56ch;
    margin: 0 auto;
}

.section-service-paths {
    padding-top: 18px;
    padding-bottom: 22px;
}

.service-paths {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-path-card {
    display: grid;
    gap: 12px;
    padding: 24px 24px 22px;
    border-radius: 24px;
    background: var(--surface);
    border: 1px solid rgba(18, 15, 13, 0.08);
    box-shadow: var(--shadow);
    min-height: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-path-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 176, 56, 0.34);
    box-shadow: 0 22px 44px rgba(32, 24, 13, 0.12);
}

.service-path-card.is-active {
    border-color: rgba(232, 176, 56, 0.34);
    background: linear-gradient(180deg, rgba(232, 176, 56, 0.08), rgba(255, 255, 255, 0.92));
}

.service-path-card__kicker {
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    font-weight: 800;
}

.service-path-card strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 0.98;
}

.service-path-card p {
    margin: 0;
    color: var(--muted);
    max-width: 34ch;
}

.service-path-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
    color: var(--gold-deep);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-path-card__cta span:last-child {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.service-path-card:hover .service-path-card__cta span:last-child {
    transform: translateX(4px);
}

.section-inclusive-story {
    background: linear-gradient(180deg, rgba(232, 176, 56, 0.05), rgba(255, 255, 255, 0));
}

.inclusive-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.inclusive-list__card {
    display: grid;
    gap: 16px;
    padding: 26px 24px;
    border-radius: 22px;
    background: var(--surface);
    border: 1px solid rgba(18, 15, 13, 0.08);
    box-shadow: var(--shadow);
}

.inclusive-list__symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(232, 176, 56, 0.14);
    color: var(--gold-deep);
    font-size: 1.4rem;
    font-weight: 800;
}

.inclusive-list__card h3 {
    font-size: 1.5rem;
}

.inclusive-list__card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.groom-story,
.prosthesis-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 32px;
    align-items: stretch;
}

.groom-story__media,
.prosthesis-copy__media {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
    min-height: 520px;
}

.groom-story__media img,
.prosthesis-copy__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.groom-story__content,
.prosthesis-copy__content {
    display: grid;
    align-content: center;
    gap: 18px;
    padding: 20px 0;
}

.groom-story__content p,
.prosthesis-copy__content > p {
    margin: 0;
    max-width: 52ch;
    color: var(--muted);
    line-height: 1.76;
}

.section-steps-soft {
    background: linear-gradient(180deg, rgba(232, 176, 56, 0.06), rgba(255, 255, 255, 0));
}

.info-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card__muted {
    display: grid;
    gap: 10px;
    padding-top: 2px;
}

.plan-card__muted strong {
    color: var(--muted);
    font-size: 0.88rem;
    font-family: "Manrope", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mini-plan-slider--plans .mini-plan-card {
    min-height: 100%;
}

.prosthesis-benefits {
    display: grid;
    gap: 14px;
    padding-top: 12px;
}

.prosthesis-benefits__item {
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.prosthesis-benefits__item span {
    width: 14px;
    height: 14px;
    margin-top: 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold), var(--gold-deep));
    box-shadow: 0 0 0 6px rgba(232, 176, 56, 0.12);
}

.prosthesis-benefits__item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.74;
}

.section-before-after {
    background: linear-gradient(180deg, rgba(18, 15, 13, 0.03), rgba(255, 255, 255, 0));
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.before-after-card {
    overflow: hidden;
    border-radius: 24px;
    min-height: 360px;
    box-shadow: var(--shadow);
    background: var(--surface);
}

.before-after-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.filter-chips::-webkit-scrollbar,
.nav-links::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    border: 1px solid rgba(18, 15, 13, 0.12);
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 18px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    font-weight: 800;
}

.filter-chip.is-active {
    background: var(--gold);
    border-color: var(--gold);
}

.contact-grid {
    align-items: start;
}

.contact-panel h2,
.contact-form-panel h2 {
    margin-bottom: 12px;
}

.contact-stack {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.contact-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 800;
}

.contact-card strong {
    display: block;
    font-size: 1.05rem;
}

.contact-card a {
    display: inline-block;
    margin-top: 10px;
    color: var(--gold-deep);
    font-weight: 800;
}

.contact-form-panel {
    padding: 28px;
    border-radius: 18px;
}

.contact-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.contact-feedback {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.95rem;
    line-height: 1.65;
}

.contact-feedback--success {
    background: rgba(48, 132, 73, 0.12);
    color: #1b6b31;
    border: 1px solid rgba(48, 132, 73, 0.18);
}

.contact-feedback--error {
    background: rgba(168, 46, 46, 0.1);
    color: #8b2323;
    border: 1px solid rgba(168, 46, 46, 0.18);
}

.contact-form label span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(18, 15, 13, 0.12);
    border-radius: 10px;
    padding: 15px 16px;
    background: rgba(255, 255, 255, 0.82);
}

.contact-form-note {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.contact-submit {
    width: 100%;
}

.map-section {
    background: rgba(255, 255, 255, 0.2);
}

body[data-theme="dark"] .site-header {
    background: rgba(15, 11, 9, 0.82);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .theme-toggle {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

body[data-theme="dark"] .button-secondary,
body[data-theme="dark"] .button-outline {
    color: var(--ink);
    border-color: rgba(255, 255, 255, 0.24);
}

body[data-theme="dark"] .page-hero,
body[data-theme="dark"] .narrative-section,
body[data-theme="dark"] .map-section {
    background: rgba(255, 255, 255, 0.02);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.map-card {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.map-card iframe {
    width: 100%;
    height: 520px;
    border: 0;
}

.dark-cta {
    padding: 96px 0;
    background: var(--dark);
    color: #fff;
}

.dark-cta .kicker,
.site-footer h4 {
    color: var(--gold);
}

.dark-cta__inner {
    text-align: center;
}

.dark-cta__inner h2 {
    max-width: 15ch;
    margin: 0 auto 18px;
}

.dark-cta__title--wide {
    max-width: 11.6ch;
    line-height: 0.98;
    text-wrap: balance;
}

.dark-cta__inner p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 720px;
    margin: 0 auto;
}

.site-footer {
    background: var(--dark);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
    grid-template-columns: minmax(300px, 1.4fr) repeat(3, minmax(170px, 0.76fr));
    align-items: start;
    gap: 28px 34px;
    padding: 56px 0 48px;
}

.footer-brand img {
    width: 210px;
    margin-bottom: 18px;
    margin-left: 0;
}

.footer-brand {
    padding-right: 20px;
}

.footer-brand__content {
    max-width: 430px;
    padding-left: 0;
    display: grid;
    gap: 18px;
}

.footer-brand p,
.footer-links li,
.footer-bottom span,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.74);
}

.footer-brand p {
    max-width: 420px;
    margin: 0;
}

.footer-column {
    padding-top: 12px;
}

.footer-column h3 {
    margin-bottom: 20px;
}

.footer-brand__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links {
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-links--contact {
    margin-bottom: 18px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-socials__link {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-socials__link svg {
    width: 18px;
    height: 18px;
}

.footer-socials__link:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 176, 56, 0.55);
    background: rgba(232, 176, 56, 0.12);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
}

.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-left: auto;
}

.whatsapp-floating {
    position: fixed;
    right: 20px;
    bottom: 22px;
    z-index: 45;
    display: grid;
    justify-items: end;
    gap: 14px;
}

.whatsapp-floating__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 0;
    border-radius: 999px;
    min-width: 62px;
    height: 62px;
    padding: 8px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 22px 44px rgba(18, 140, 126, 0.28);
    cursor: pointer;
    overflow: hidden;
    transition: min-width 0.28s ease, gap 0.28s ease, padding 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.whatsapp-floating:hover .whatsapp-floating__trigger,
.whatsapp-floating:focus-within .whatsapp-floating__trigger,
.whatsapp-floating.is-open .whatsapp-floating__trigger {
    min-width: 228px;
    gap: 12px;
    padding-right: 22px;
}

.whatsapp-floating__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    flex: 0 0 46px;
}

.whatsapp-floating__icon svg {
    width: 24px;
    height: 24px;
}

.whatsapp-floating__label {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: max-width 0.28s ease, opacity 0.2s ease;
}

.whatsapp-floating:hover .whatsapp-floating__label,
.whatsapp-floating:focus-within .whatsapp-floating__label,
.whatsapp-floating.is-open .whatsapp-floating__label {
    max-width: 160px;
    opacity: 1;
}

.whatsapp-floating__panel {
    width: min(360px, calc(100vw - 30px));
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(18, 15, 13, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 60px rgba(18, 15, 13, 0.16);
}

body[data-theme="dark"] .whatsapp-floating__panel {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(24, 19, 17, 0.96);
}

.whatsapp-floating__panel[hidden] {
    display: none;
}

.whatsapp-floating__panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.whatsapp-floating__panel-header strong {
    font-size: 1.05rem;
}

.whatsapp-floating__panel-header button {
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.whatsapp-floating__panel p {
    margin-bottom: 12px;
    font-size: 0.94rem;
    line-height: 1.65;
}

.whatsapp-floating__panel textarea {
    width: 100%;
    min-height: 110px;
    resize: vertical;
    border: 1px solid rgba(18, 15, 13, 0.14);
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 14px;
    background: #fff;
    color: var(--ink);
}

body[data-theme="dark"] .whatsapp-floating__panel textarea {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.whatsapp-floating__send {
    width: 100%;
}

.footer-bottom__links span {
    color: rgba(255, 255, 255, 0.74);
}

.reveal {
    opacity: 0.24;
    transform: translateY(28px);
    filter: blur(2px);
    transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.reveal-delay {
    transition-delay: 0.12s;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

@media (max-width: 1180px) {
    .hero-layout,
    .split-story__grid,
    .two-column-story,
    .contact-grid,
    .groom-story,
    .prosthesis-copy,
    .plan-grid,
    .service-grid--four,
    .service-grid--listing,
    .promotion-grid,
    .reviews-wrap,
    .reviews-grid,
    .info-card-grid--three,
    .info-card-grid--four,
    .team-grid,
    .feature-strip,
    .inclusive-list,
    .service-paths,
    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-mosaic__item--1,
    .gallery-mosaic__item--2,
    .gallery-mosaic__item--3,
    .gallery-mosaic__item--4,
    .gallery-mosaic__item--5 {
        grid-column: auto;
        grid-row: auto;
        min-height: 260px;
    }

    .split-story__image img,
    .two-column-story__media img {
        min-height: 420px;
    }

    .hero-slider-frame {
        aspect-ratio: 1.7 / 1;
        min-height: 560px;
    }

    .hero-copy--overlay {
        max-width: 54%;
    }

    .hero-copy--overlay h1 {
        font-size: clamp(3rem, 5vw, 4.9rem);
    }

    .hero-copy--overlay p {
        max-width: 34ch;
    }

    .service-grid--listing {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 26px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .footer-brand img {
        margin-left: 0;
    }

    .footer-brand__content {
        padding-left: 0;
    }

    .footer-column {
        padding-top: 0;
    }

    .mini-plan-slider__track {
        grid-auto-columns: calc((100% - 24px) / 2);
    }

    .groom-story__media,
    .prosthesis-copy__media,
    .before-after-card {
        min-height: 320px;
    }
}

@media (max-width: 860px) {
    .inclusion-badge {
        left: 12px;
        width: 56px;
        height: 56px;
    }

    .site-header {
        position: static;
    }

    .header-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 18px 0;
    }

    .brand {
        display: flex;
        justify-content: center;
    }

    .brand img {
        width: 172px;
    }

    .header-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .theme-toggle {
        width: 100%;
        justify-content: center;
    }

    .nav-links {
        gap: 18px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .nav-links a {
        white-space: nowrap;
        font-size: 0.9rem;
    }

    .header-actions > .button {
        width: 100%;
    }

    .container--bleed {
        width: min(100%, calc(100% - 12px));
    }

    .service-showcase__controls {
        justify-content: space-between;
    }

    .service-path-card strong {
        font-size: 1.8rem;
    }

    .service-paths {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .groom-story__content,
    .prosthesis-copy__content {
        padding: 0;
    }

    .hero-actions,
    .dark-cta__actions,
    .footer-bottom,
    .footer-bottom__links {
        flex-wrap: wrap;
    }

    .mini-stats,
    .about-stats,
    .gallery-mosaic {
        grid-template-columns: 1fr;
    }

    .reviews-wrap {
        gap: 20px;
    }

    .reviews-grid {
        gap: 18px;
    }

    .hero-slider-frame {
        aspect-ratio: auto;
        min-height: 620px;
        border-radius: 0 0 24px 24px;
    }

    .hero-copy {
        max-width: none;
    }

    .hero-overlay {
        align-items: flex-end;
        padding: 28px;
    }

    .hero-overlay__line {
        display: none;
    }

    .hero-copy--overlay {
        max-width: 100%;
        width: 100%;
    }

    .hero-copy--overlay h1 {
        max-width: 9.8ch;
        font-size: clamp(2.8rem, 8vw, 4.4rem);
    }

    .hero-copy--overlay p {
        max-width: 30ch;
        font-size: 1rem;
    }

    .hero-actions--inline {
        flex-wrap: wrap;
    }

    .service-card img {
        height: 260px;
    }

    .service-grid--listing {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        padding: 42px 0 18px;
    }

    .hero-copy > p,
    .page-hero__content p {
        font-size: 1.02rem;
        max-width: 33ch;
    }

    .section {
        padding: 78px 0;
    }

    .page-hero {
        padding: 70px 0 60px;
    }

    .brand-band__track {
        justify-content: center;
        text-align: center;
        row-gap: 10px;
    }

    .hero-slider-meta--overlay {
        left: 28px;
        right: 28px;
        bottom: 18px;
        padding-left: 0;
        justify-content: flex-end;
    }

    .hero-slider-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 0;
    }

    .hero-slider-caption {
        max-width: 22ch;
    }

    .filter-chips {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 6px 8px;
        margin-bottom: 34px;
        scrollbar-width: none;
    }

    .filter-chip {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .contact-form-panel,
    .editor-section,
    .page-end-cta__box {
        border-radius: 18px;
    }

    .map-card iframe {
        height: 380px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 42px 0;
    }

    .footer-brand__actions {
        display: grid;
    }

    .footer-brand img {
        width: 160px;
        margin-left: 0;
        margin-bottom: 22px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-column {
        padding-top: 0;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .whatsapp-floating {
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-floating__trigger,
    .whatsapp-floating:hover .whatsapp-floating__trigger,
    .whatsapp-floating:focus-within .whatsapp-floating__trigger,
    .whatsapp-floating.is-open .whatsapp-floating__trigger {
        min-width: 58px;
        width: 58px;
        height: 58px;
        padding: 6px;
        gap: 0;
    }

    .whatsapp-floating__icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .whatsapp-floating__label,
    .whatsapp-floating:hover .whatsapp-floating__label,
    .whatsapp-floating:focus-within .whatsapp-floating__label,
    .whatsapp-floating.is-open .whatsapp-floating__label {
        max-width: 0;
        opacity: 0;
    }

    .mini-plan-slider__track {
        grid-auto-columns: 100%;
        gap: 18px;
    }

    .mini-plan-card p {
        min-height: 0;
    }

    .team-card img {
        height: 260px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 14px 16px;
    }

    .dark-cta {
        padding: 72px 0;
    }

    .dark-cta__inner h2 {
        max-width: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    h1 {
        font-size: clamp(3.2rem, 12vw, 4.6rem);
        line-height: 0.98;
        max-width: 9ch;
    }

    .hero-copy h1 {
        max-width: 8.2ch;
    }

    h2 {
        font-size: clamp(2.45rem, 10vw, 3.9rem);
        line-height: 1;
    }

    .container {
        width: min(100% - 28px, 1280px);
    }

    .page-end-cta__box,
    .contact-form-panel {
        padding: 30px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading--center p,
    .contact-form-panel p,
    .two-column-story__copy p,
    .split-story__content p {
        max-width: 34ch;
        margin-left: auto;
        margin-right: auto;
    }

    .review-card p,
    .info-card p,
    .feature-strip__card p,
    .promotion-card p,
    .service-card p {
        max-width: 34ch;
    }

    .split-story__content,
    .two-column-story__copy {
        display: grid;
        gap: 18px;
    }

    .feature-strip__card,
    .info-card,
    .contact-card,
    .plan-card,
    .promotion-card,
    .review-card {
        padding: 28px 24px;
    }

    .service-card__content {
        padding: 24px 22px 24px;
    }

    .team-card__content,
    .review-card,
    .review-cta {
        padding: 24px 22px;
    }

    .mini-stats {
        gap: 14px;
        margin: 24px 0 24px;
    }

    .brand-band__track span {
        line-height: 1.6;
    }
}

@media (max-width: 640px) {
    .inclusion-badge {
        left: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }

    .inclusion-badge::after {
        display: none;
    }

    .hero {
        padding: 0 0 18px;
    }

    .hero-slider-frame {
        min-height: 560px;
        border-radius: 0 0 22px 22px;
    }

    .hero-overlay {
        padding: 22px;
    }

    .hero-copy__eyebrow {
        margin-bottom: 14px;
        font-size: 0.7rem;
        letter-spacing: 0.12em;
    }

    .hero-copy--overlay h1 {
        max-width: 8.8ch;
        font-size: clamp(2.45rem, 10vw, 3.8rem);
        line-height: 0.96;
    }

    .hero-copy--overlay p {
        max-width: 26ch;
        margin-top: 14px;
        font-size: 0.95rem;
        line-height: 1.66;
    }

    .hero-actions--inline {
        gap: 10px;
        margin-top: 22px;
    }

    .hero-actions--inline .button {
        width: 100%;
    }

    .hero-slider-meta--overlay {
        left: 22px;
        right: 22px;
        bottom: 14px;
    }

    .service-showcase {
        gap: 22px;
    }

    .service-paths {
        grid-template-columns: 1fr;
    }

    .service-showcase__controls {
        justify-content: space-between;
    }

    .service-showcase__status {
        min-width: 56px;
        font-size: 0.82rem;
    }

    .service-nav-button {
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
    }
}

/* ================================================================
   Blog / Notícias — reaproveita tokens de marca (cards claros,
   dourado como acento). Sem cara de template: card editorial.
   ================================================================ */
/* Grade fixa: 3 colunas no desktop (3×3 = 9 por página), 2 no tablet, 1 no celular */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 1023px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
.post-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface-strong);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(18, 15, 13, 0.16);
}
.post-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--surface);
}
.post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.post-card:hover .post-card__media img {
    transform: scale(1.05);
}
.post-card__media--empty {
    display: grid;
    place-items: center;
    color: var(--gold);
    min-height: 150px;
}
/* Gradiente para legibilidade do autor sobre a foto */
.post-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 10, 8, 0.74) 0%, rgba(12, 10, 8, 0.16) 34%, transparent 56%);
    pointer-events: none;
    z-index: 1;
}
.post-card__media--empty::after { display: none; }
/* Autor sobreposto na base da capa (estilo editorial da referência) */
.post-card__author {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.post-card__avatar {
    flex: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: #241c15;
    font-family: "Manrope", system-ui, sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    border: 2px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}
.post-card__authormeta {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}
.post-card__authormeta strong {
    font-family: "Manrope", system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.post-card__authormeta span {
    font-size: 0.76rem;
    opacity: 0.92;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.post-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 24px 22px;
    flex: 1;
}
.post-card__cat {
    align-self: flex-start;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold-deep);
}
.post-card__title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    line-height: 1.1;
    margin: 0;
    text-wrap: balance;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-card__title a { color: inherit; }
.post-card__title a:hover { color: var(--gold-deep); }
.post-card__excerpt {
    color: var(--muted);
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-card__foot {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--muted);
}
.post-card__stats { display: inline-flex; align-items: center; gap: 14px; }
.post-card__stat { display: inline-flex; align-items: center; gap: 5px; }
.post-card__stat svg { opacity: 0.7; }

/* ===== Página de leitura do artigo =====
   Cabeçalho amplo e centralizado (até ~1100px); corpo em coluna de leitura
   confortável (~780px). Sem coluna estreita nem espaço morto lateral. */
.post-article {
    max-width: 1100px;
    margin: 0 auto;
}
.post-page { padding-top: 28px; }
.post-article__head {
    text-align: center;
    margin-bottom: 38px;
}
.post-article__cat {
    display: inline-block;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold-deep);
    margin-bottom: 14px;
}
.post-article__cat:hover { color: var(--gold); }
.post-article__byline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}
.post-article__avatar {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: #241c15;
    font-family: "Manrope", system-ui, sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.post-article__bymeta {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
    text-align: left;
}
.post-article__bymeta strong {
    font-family: "Manrope", system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
}
.post-article__bymeta span {
    font-size: 0.86rem;
    color: var(--muted);
}
.post-article__title {
    font-size: clamp(2.4rem, 4.6vw, 4.4rem);
    line-height: 1.05;
    text-wrap: balance;
    max-width: 1000px;
    margin: 0 auto 18px;
}
.post-article__lead {
    font-size: clamp(1.08rem, 1.6vw, 1.28rem);
    line-height: 1.6;
    color: var(--muted);
    max-width: 780px;
    margin: 0 auto;
}
.post-article__cover {
    margin: 0 auto 44px;
    max-width: 1100px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.post-article__cover img {
    width: 100%;
    aspect-ratio: 21 / 10;
    object-fit: cover;
    display: block;
}
.post-article__body {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.12rem;
    line-height: 1.8;
}
.post-article__body p {
    margin: 0 0 1.35em;
}
.post-article__body h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.9rem;
    line-height: 1.15;
    margin: 1.6em 0 0.6em;
}
.post-article__body h3 {
    font-size: 1.25rem;
    margin: 1.5em 0 0.5em;
}
.post-article__body ul,
.post-article__body ol {
    margin: 0 0 1.35em;
    padding-left: 1.4em;
}
.post-article__body li { margin-bottom: 0.5em; }
.post-article__body blockquote {
    margin: 1.6em 0;
    padding: 4px 0 4px 20px;
    border-left: 3px solid var(--gold);
    color: var(--muted);
    font-style: italic;
}
.post-article__body a {
    color: var(--gold-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.post-article__body strong { font-weight: 700; }
.post-article__body img {
    max-width: 100%;
    border-radius: 16px;
    margin: 1.4em 0;
}
.post-article__foot {
    max-width: 780px;
    margin: 44px auto 0;
    padding-top: 26px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}
/* Paginação numérica do blog */
.blog-pagination {
    margin-top: 52px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.blog-pagination a,
.blog-pagination span.is-current {
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface-strong);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.blog-pagination a:hover {
    border-color: var(--gold);
    transform: translateY(-1px);
}
.blog-pagination span.is-current {
    background: var(--gold);
    border-color: var(--gold);
    color: #241c15;
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .post-article__body {
        font-size: 1.04rem;
    }
}

