/* ======================================================
   RESET & BASE
   ====================================================== */

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    max-width: 100%;
    overflow-x: clip; /* melhor que hidden em navegadores modernos */
}

body {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.78;
    letter-spacing: 0;
    font-weight: 500;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

/* ======================================================
   TIPOGRAFIA
   ====================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora", sans-serif;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.01em;
}

.hero-title,
.section-title,
#sobre h2,
.cta-title,
.display-6,
.footer-mark {
    font-family: "Sora", sans-serif;
    font-weight: 700;
}

button,
.btn,
input,
select,
textarea {
    font-family: "Manrope", sans-serif;
}

h1,
h2,
h3 {
    margin-bottom: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Links em textos institucionais */
p a {
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

/* Opcional: underline elegante no hover */
p a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

p a:hover::after {
    opacity: 1;
}

.hero-title {
    font-size: 4.1rem;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    max-width: 14.5ch;
    text-wrap: balance;
}

.hero-title + p {
    margin-bottom: 2rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    margin-bottom: 1.5rem;
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-lead {
    max-width: 760px;
    font-size: 1.02rem;
    line-height: 1.92;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.7rem;
        line-height: 1.04;
        letter-spacing: -0.02em;
    }
}

.section-title {
    font-size: 2.9rem;
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin-bottom: 0.85rem;
}

.section-subtitle {
    max-width: 620px;
    margin: 0 auto 1.7rem;
    font-size: 1rem;
    line-height: 1.82;
}

/* ======================================================
   SEÇÕES & ESPAÇAMENTO
   ====================================================== */

.section-spacing {
    padding: 5.6rem 0;
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 4.1rem 0;
    }
}

.text-center > p,
.text-center .section-subtitle,
.text-center .lead {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ==============================
   SEÇÃO DE ATUAÇÃO (DARK SOFT)
   ============================== */

.section-dark h2,
.section-dark h3,
.section-dark strong {}

.section-dark .section-subtitle,
.section-dark p {
    margin-left: auto;
    margin-right: auto;
}

.section-dark .card-soft {
    padding: 2.4rem 2.1rem;
}

.section-dark .card-soft:hover {
    transform: translateY(-4px);
}

.section-dark p.small {
    font-size: 0.88rem;
    line-height: 1.65;
}

.section-spacing p.small {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ======================================================
   BOTÕES
   ====================================================== */

.btn-sm {
    padding: 10px 28px;
    font-size: 0.82rem;
    font-weight: 600;
}

.btn-lg {
    padding: 17px 50px;
    font-size: 0.96rem;
    font-weight: 600;
}

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

.hero-img {
    width: 100%;
    max-width: 560px;
    border-radius: 28px;
}

.hero-copy-col {
    position: relative;
    z-index: 2;
    padding-top: 1rem;
    padding-right: 2.2rem;
}

.hero-copy-col::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 1.4rem;
    width: 3px;
    height: 88px;
    border-radius: 999px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 2.1rem;
    margin-bottom: 0.75rem;
}

.hero-secondary-action {
    min-width: 240px;
}

.hero-visual {
    position: relative;
    display: inline-block;
    width: min(100%, 560px);
    transform: translateY(-8px);
    padding: 18px;
    border-radius: 34px;
}

.hero-floating-card {
    position: absolute;
    right: -12px;
    bottom: 18px;
    max-width: 258px;
    padding: 1rem 1rem 0.95rem;
    border-radius: 22px;
    text-align: left;
    overflow: hidden;
}

.hero-floating-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
}

.hero-floating-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.55rem;
    padding: 0.28rem 0.58rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-floating-kicker i {
    font-size: 0.78rem;
}

.hero-floating-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hero-floating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 0.45rem;
    font-size: 0.88rem;
    line-height: 1;
}

.hero-floating-card strong {
    display: block;
    font-size: 0.84rem;
    line-height: 1.6;
}

.hero-floating-meta {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    margin-top: 0.55rem;
    font-size: 0.66rem;
    line-height: 1.5;
}

.hero-floating-meta i {
    font-size: 0.78rem;
    flex: 0 0 auto;
}

.hero-footnote {
    max-width: 640px;
    font-size: 0.92rem;
    line-height: 1.75;
}

.hero-shell {
    max-width: 1360px;
}

/* ======================================================
   IMAGENS
   ====================================================== */

.img-soft {
    border-radius: 22px;
}

/* Remove sombras pesadas */
.shadow,
.shadow-lg {
}

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

.card-soft {
    border-radius: 24px;
    padding: 2.1rem;
    margin-bottom: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-soft:hover {
    transform: translateY(-4px);
}

.condition-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.condition-tag {
    display: inline-block;
    min-height: 52px;
    padding: 0.82rem 0.96rem;
    border-radius: 18px;
    font-size: 0.86rem;
    line-height: 1.48;
    text-align: center;
    white-space: normal;
}

.process-flow {
    position: relative;
    counter-reset: process-step;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 1.65rem;
}

.section-process .container {
    position: relative;
}

.section-process .container::before {
    content: "";
    position: absolute;
    top: clamp(78px, 9vw, 104px);
    left: 50%;
    width: min(100%, 980px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(91, 145, 59, 0.22), rgba(162, 123, 92, 0.24), rgba(91, 145, 59, 0.22), transparent);
    pointer-events: none;
    opacity: 0.75;
}

.process-card {
    position: relative;
    overflow: hidden;
    min-height: 0;
    padding: 2rem 1.7rem 1.65rem;
    border-radius: 30px;
    counter-increment: process-step;
    background: linear-gradient(180deg, var(--surface-process-top, rgba(255, 255, 255, 0.94)), var(--surface-process-bottom, rgba(249, 243, 240, 0.9)));
    border: 1px solid var(--border-process, rgba(44, 57, 48, 0.14));
    box-shadow: var(--shadow-process, 0 20px 46px rgba(61, 71, 64, 0.06));
    opacity: 0;
    transform:
        perspective(1200px)
        rotateX(var(--tilt-x, 0deg))
        rotateY(var(--tilt-y, 0deg))
        translateY(26px) scale(0.98);
    transform-style: preserve-3d;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        opacity 0.55s ease;
    transition-delay: var(--delay, 0ms);
    will-change: transform, box-shadow, opacity;
}

.process-card.is-visible {
    opacity: 1;
    transform:
        perspective(1200px)
        rotateX(var(--tilt-x, 0deg))
        rotateY(var(--tilt-y, 0deg))
        translateY(0) scale(1);
}

.process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            260px circle at var(--glow-x, 50%) var(--glow-y, 38%),
            rgba(91, 145, 59, 0.14),
            rgba(255, 255, 255, 0) 58%
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.process-card::after {
    content: counter(process-step, decimal-leading-zero);
    position: absolute;
    top: 1.1rem;
    left: 1.2rem;
    width: 2.55rem;
    height: 2.55rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(44, 57, 48, 0.12);
    color: rgba(44, 57, 48, 0.82);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow:
        0 14px 30px rgba(61, 71, 64, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition:
        transform 0.4s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.process-card h3 {
    margin-top: 0.35rem;
    margin-bottom: 0.7rem;
}

.process-card p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.7;
}

.process-card:hover {
    transform:
        perspective(1200px)
        rotateX(var(--tilt-x, 0deg))
        rotateY(var(--tilt-y, 0deg))
        translateY(-10px) scale(1.015);
    box-shadow:
        0 28px 56px rgba(61, 71, 64, 0.12),
        0 10px 28px rgba(162, 123, 92, 0.16);
    border-color: rgba(162, 123, 92, 0.22);
}

.process-card:hover::before {
    transform: scale(1.01);
}

.process-card:hover::after {
    transform: translateY(-2px) scale(1.04);
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 12px 24px rgba(44, 57, 48, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.about-cta-wrap {
    margin-top: 1.75rem;
}

.about-cta-btn {
    min-width: 220px;
}

.about-visual {
    display: inline-flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 590px;
    padding: 14px;
    border-radius: 32px;
}

.about-img {
    width: 100%;
    aspect-ratio: 10 / 13;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 24px;
}

.location-details {
    display: grid;
    gap: 1rem;
    max-width: 520px;
}

.location-item {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 14px;
    align-items: start;
}

.location-item i {
    margin-top: 0.2rem;
    font-size: 1rem;
}

.location-item div {
    display: grid;
    gap: 0.18rem;
}

.location-item span {
    font-size: 0.94rem;
    line-height: 1.66;
}

.location-item a {
    font-weight: 600;
    text-decoration: none;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.3rem;
}

.location-actions .btn {
    min-height: 56px;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
}

.location-actions .btn i {
    font-size: 1rem;
}

.location-whatsapp-btn {}

.specialty-list strong {
    display: block;
    font-weight: 500;
}

.specialty-list p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .card-soft {
        padding: 1.75rem;
    }

    .condition-tags {
        gap: 10px;
    }

    .condition-tag {
        width: 100%;
        padding: 1rem 1.1rem;
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .review-card-shell {
        padding: 1.45rem 1.15rem !important;
    }

    .review-text {
        font-size: 0.93rem;
        line-height: 1.72;
    }

    .reviews-summary-rating {
        font-size: 1.1rem;
        gap: 8px;
    }

    #avaliacoes .container,
    #agendar .container,
    #atendimento .container,
    #por-que-funciona .container {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }
}

/* ======================================================
   AVALIAÇÕES
   ====================================================== */

.review-card {
    border-radius: 24px;
    padding: 2.1rem;
}

.review-card p {
    font-size: 0.92rem;
}

/* ======================================================
   MAPA
   ====================================================== */

.map-embed {
    width: 100%;
    height: 360px;
    border-radius: 18px;
    border: none;
}

/* ======================================================
   CTA FINAL
   ====================================================== */

.cta-final {
    padding: 5.5rem 1rem;
}

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

.footer-premium {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1.25rem;
    padding: 1.35rem 0 1rem;
}

.footer-brand {
    justify-self: start;
}

.footer-mark {
    display: inline-block;
    font-size: 1.55rem;
    line-height: 1.08;
    letter-spacing: 0.01em;
}

.footer-copy {
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.7;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 0.65rem;
    padding-bottom: 0.1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    text-decoration: none;
}

/* DIVIDER */
.divider {
    width: 60px;
    height: 1px;
    margin: 6rem auto;
}

/* SECTION SOFT */
.section-soft {
}

.section-cta h2 {
    max-width: 680px;
    margin: 0 auto 1rem;
    line-height: 1.25;
}

.section-cta p {
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-size: 0.95rem;
}

.section-nude2 h2 {
    max-width: 680px !important;
    margin: 0 auto 1rem !important;
    line-height: 1.25 !important;
}

.section-nude2 p {
    max-width: 520px !important;
    margin: 0 auto 2.5rem !important;
    font-size: 0.95rem !important;
}

/* FOOTER */
.footer {
    padding: 2.5rem 1rem;
    font-size: 0.85rem;
}

/* BOTÃO SECUNDÁRIO */
.btn-primary-custom {
    border-radius: 50px;
    padding: 12px 30px;
    border: none;
}

html {
    scroll-behavior: smooth;
}

/* ----------------------------------- */

.menu-top {
    position: fixed;
    top: -100px; /* escondido */
    left: 0;
    width: 100%;
    z-index: 1000;

    padding: 14px 0;
    backdrop-filter: blur(6px);
    transition:
        top 0.35s ease,
        box-shadow 0.35s ease;
}

/* Quando aparece */
.menu-top.is-visible {
    top: 0;
}

/* Links */
.menu-top a {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.section-bridge .lead {
    max-width: 760px;
    font-size: 1rem;
    line-height: 1.88;
}

.section-about p {
    max-width: 56ch;
    margin-left: 0;
    margin-right: 0;
    font-size: 0.96rem;
    line-height: 1.84;
}

.section-service .section-subtitle,
.section-process .section-subtitle {
    max-width: 700px;
}

.section-reviews .display-6 {
    font-size: 2.95rem;
    line-height: 1.10;
    letter-spacing: -0.015em;
}

.section-location .display-6 {
    font-size: 2.8rem;
    line-height: 1.04;
    letter-spacing: -0.024em;
}

.section-final-cta .cta-copy {
    max-width: 54ch;
    font-size: 0.96rem;
    line-height: 1.82;
}

/* LOGO HERO */
.hero-brand {
    width: 100%;
}

.hero-logo {
    max-height: 180px;
    width: auto;
    margin: 0 auto;
    display: block;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .section-spacing {
        padding: 5rem 0;
    }

    .hero-shell,
    #avaliacoes .container,
    #agendar .container,
    #atendimento .container,
    #por-que-funciona .container,
    .section-location .container,
    #sobre .container {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }

    .hero-row {
        min-height: auto;
        row-gap: 2.5rem;
    }

    .hero-copy-col {
        padding-right: 0.75rem;
    }

    .hero-title {
        font-size: 3.1rem;
        line-height: 1;
        max-width: 16ch;
    }

    .hero-lead {
        font-size: 1rem;
        line-height: 1.82;
        max-width: 62ch;
    }

    .hero-actions {
        gap: 12px;
        margin-top: 1.85rem;
    }

    .hero-actions .btn-lg {
        padding: 15px 30px;
        font-size: 0.9rem;
    }

    .hero-secondary-action {
        min-width: 0;
    }

    .hero-visual {
        width: min(100%, 470px);
        padding: 14px;
    }

    .hero-img {
        max-width: 470px;
    }

    .hero-floating-card {
        right: -4px;
        bottom: 12px;
        max-width: 220px;
        padding: 0.85rem 0.85rem 0.8rem;
    }

    .section-title,
    .section-reviews .display-6,
    .section-location .display-6,
    #sobre h2,
    .cta-title {
        font-size: 2.45rem;
        line-height: 1.05;
    }

    .section-subtitle,
    .section-about p,
    .section-final-cta .cta-copy {
        max-width: 60ch;
    }

    .card-soft {
        padding: 2rem 1.5rem;
    }

    .condition-tags {
        gap: 10px;
    }

    .condition-tag {
        padding: 0.8rem 0.9rem;
        font-size: 0.84rem;
    }

    .process-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        margin-top: 1.8rem;
    }

    .process-card {
        min-height: 0;
        padding: 1.8rem 1.4rem 1.5rem;
    }

    .process-card:last-child {
        grid-column: 1 / -1;
    }

    .section-process .container::before {
        width: min(100%, 720px);
    }

    .about-visual {
        max-width: 440px;
    }

    .about-img {
        aspect-ratio: 9 / 11;
    }

    #sobre .px-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .review-grid {
        gap: 18px !important;
    }

    .review-card-shell {
        padding: 1.6rem 1.25rem !important;
    }

    .review-text {
        font-size: 0.92rem;
        line-height: 1.72;
    }

    .location-item span {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .location-actions .btn {
        min-height: 52px;
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    .cta-shell {
        padding: 2.25rem 2rem;
    }

    .cta-card {
        padding: 1.5rem;
    }

    .section-location iframe {
        height: 340px;
    }

    .footer-premium {
        gap: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .hero-copy-col {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding-right: 0;
    }

    .hero-title {
        font-size: 3.35rem;
        max-width: 12.2ch;
        margin-left: auto;
        margin-right: auto;
        text-wrap: pretty;
        letter-spacing: -0.025em;
    }

    .hero-lead {
        max-width: 58ch;
        margin-left: auto;
        margin-right: auto;
    }

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

    #sobre h2,
    .section-about p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .about-cta-wrap {
        text-align: center;
    }

    .section-location .col-lg-6,
    .section-final-cta .col-lg-7,
    .section-final-cta .col-lg-5 {
        text-align: center;
    }

    .location-details {
        margin-left: auto;
        margin-right: auto;
    }

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

    .cta-copy {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 992px) and (max-width: 1024px) {
    .hero-title {
        max-width: 12.8ch;
        letter-spacing: -0.028em;
    }

    .hero-copy-col {
        padding-right: 1.15rem;
    }
}

@media (min-width: 992px) and (max-width: 1180px) {
    .menu-top {
        padding: 11px 0;
    }

    .menu-top .container-lg {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .menu-top .d-flex.gap-4 {
        gap: 1rem !important;
    }

    .menu-top a {
        font-size: 13px;
    }

    .menu-top .menu-cta {
        padding: 10px 20px;
        font-size: 0.78rem;
    }

    .section-reviews .display-6 {
        font-size: 2.55rem;
    }

    .review-grid {
        gap: 16px !important;
    }

    .review-card-shell {
        padding: 1.45rem 1.15rem !important;
        border-radius: 24px !important;
    }

    .review-text {
        font-size: 0.9rem;
        line-height: 1.68;
    }

    .review-author {
        margin-top: 1rem;
        font-size: 0.94rem;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        max-height: 120px;
    }
}

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

.hero-row {
    min-height: 70vh;
}

@media (max-width: 991px) {
    .hero-row {
        text-align: center;
        min-height: auto;
    }

    .hero-brand {
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2.9rem;
        line-height: 1.04;
    }

    .hero-img {
        max-width: 440px;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-copy-col {
        padding-top: 0;
        padding-right: 0;
    }

    .hero-copy-col::before {
        display: none;
    }

    .hero-floating-card {
        display: none;
    }

    .hero-visual {
        transform: none;
        width: min(100%, 440px);
        padding: 14px;
    }

    .section-title,
    .section-reviews .display-6,
    .section-location .display-6,
    #sobre h2,
    .cta-title {
        font-size: 2.3rem;
        line-height: 1.04;
    }

    .footer-premium {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 0.85rem;
    }

    .footer-brand,
    .footer-social {
        justify-self: center;
    }
}

.specialty-list > div {
    padding: 2rem 1.5rem;
    border-radius: 14px;
}

#reviews .col-md-4 {
    display: flex;
}

#reviews .col-md-4 > div {
    width: 100%;
}

#reviews .col-md-6 {
    display: flex;
    flex: 1 1 0;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    background: transparent !important;
}

#reviews .col-md-6 > div {
    width: 100%;
    background: transparent !important;
}

#especializacoes h2 {
    margin-bottom: 1rem;
}

#especializacoes p {
    margin-bottom: 3rem;
}

#avaliacoes p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#atendimento p {
    margin-left: auto;
    margin-right: auto;
}

/* ==============================
   ATUAÇÃO – REFINO PREMIUM
   ============================== */

.section-dark .section-title {
    font-size: 2.3rem;
    font-weight: 500;
}

.section-dark .section-subtitle {
    max-width: 640px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.64;
}

.section-dark .card-soft p {
    font-size: 0.84rem;
    line-height: 1.68;
}

/* HOVER SUAVE (nada agressivo) */
.section-dark .card-soft:hover {
    transform: translateY(-6px);
}

.card-soft h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.section-nude .card-soft p,
.section-spacing .card-soft p {
    font-size: 0.9rem;
}

section {
    position: relative;
}

/* =========================================
   MENU MOBILE — esconder CTA
   ========================================= */
@media (max-width: 768px) {
    .menu-top .menu-cta {
        display: none !important;
    }
}

/* =========================================
   MENU MOBILE — CENTRALIZAÇÃO
   ========================================= */
@media (max-width: 768px) {
    /* Container do menu */
    .menu-top .container-lg {
        justify-content: center !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Grupo de links */
    .menu-top .container-lg > div {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Ajuste fino de espaçamento */
    .menu-top .d-flex {
        gap: 10px 16px;
    }

    /* Tipografia mais compacta */
    .menu-top a {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.2;
    }

    /* Altura menor do menu */
    .menu-top {
        padding: 8px 0;
    }
}

/* ==============================
   REVIEW ROTATOR
   ============================== */

.review-rotator-card {
    border-radius: 22px;
    padding: 2.4rem;
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.review-hidden {
    opacity: 0;
    transform: translateY(12px);
}

.review-visible {
    opacity: 1;
    transform: translateY(0);
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1;
}

.reviews-summary-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.35rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.reviews-summary-stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.review-text {
    position: relative;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.76;
    text-align: center;
}

.review-author {
    margin-top: 1.4rem;
    font-weight: 600;
    font-size: 1rem;
}

.review-card-shell {
    position: relative;
    padding-top: 2rem !important;
    min-height: 100%;
}

.review-quote-mark {
    font-size: 2rem;
    line-height: 0.5;
}

.review-quote-open {
    margin-right: 0.18rem;
    vertical-align: 0.2rem;
}

.review-quote-close {
    margin-left: 0.18rem;
    vertical-align: -0.18rem;
}

.review-text-body {
    display: inline;
}

/* ==============================
   REVIEW INDICATORS (SUBTIS)
   ============================== */

.review-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 0.95rem;
}

.review-indicators {
    position: relative;
    z-index: 5;
}

.review-indicators span {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 6px;
    border-radius: 999px;
    overflow: hidden;
}

/* dot ativo */
.review-indicators span.active {
    width: 26px; /* vira “pill” */
}

/* barra interna */
.review-indicators span::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 0%;
    border-radius: 999px;
    transition: none;
}

/* animação da barra */
.review-indicators span.active::after {
    animation: reviewProgress 7s linear forwards;
}

.review-indicators span[data-progress="reset"]::after {
    animation: none !important;
}

@keyframes reviewProgress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.review-grid {
    touch-action: pan-y;
    user-select: none;

    /*transition: transform 0.35s ease, opacity 0.35s ease;*/

    transition:
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 260ms ease-out;
    will-change: transform, opacity;
}

.review-grid {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    transform-origin: center center !important;
    align-items: stretch;
    gap: 24px !important;
    background: transparent !important;
}

.review-item {
    width: min(100%, 368px);
    flex: 1 1 320px;
    display: flex;
}

.review-card-shell {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 230px;
    overflow: hidden;
    background: #fffaf4;
    border: 1px solid rgba(201, 143, 100, 0.42);
    border-radius: 24px;
    padding: 1.6rem 1.4rem;
    box-shadow: none;
}

.review-card-shell::before {
    content: none;
}

.review-stars {
    justify-content: flex-start;
    color: #f6c43b;
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
}

.review-text {
    font-style: normal;
    text-align: left;
    color: var(--text-main);
    line-height: 1.72;
    min-height: clamp(64px, 7.5vw, 98px);
}

.review-author-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-card-soft);
    background: var(--highlight-soft);
}

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

.review-avatar-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--highlight);
    font-weight: 700;
}

.review-author {
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.2;
}

.review-tagline {
    margin-top: 0.15rem;
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.38;
}

.reviews-summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    margin-top: 0.45rem;
    min-height: 64px;
    padding: 1rem 1.35rem;
    border-radius: 16px;
    background: var(--surface-card);
    border: 1px solid var(--border-card-soft);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
    color: var(--text-main);
}

.reviews-summary-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.reviews-summary-main i {
    color: #f6c43b;
}

.reviews-summary-badge i {
    color: #f6c43b;
}

.reviews-summary-badge strong {
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.reviews-summary-badge span {
    color: var(--text-muted);
}

.section-reviews .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-intro {
    max-width: 980px;
    margin-bottom: 1.9rem;
}

.reviews-stage {
    width: 100%;
    max-width: 1180px;
    padding: 0 0.25rem 0.2rem;
    margin: 0 auto;
}

.section-reviews #reviews {
    width: 100%;
    margin-bottom: 0;
    justify-content: center;
    row-gap: 18px;
}

.reviews-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    width: 100%;
    margin-top: 1.15rem;
    padding-top: 0.2rem;
}

.reviews-summary-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 0.25rem;
    padding-bottom: 0.2rem;
}

.reviews-footer {
    margin-top: 1.45rem;
}

.reviews-summary-badge {
    margin-left: auto;
    margin-right: auto;
}

.section-reviews .btn-gold {
    min-width: 260px;
}

.slide-left {
    transform: translateX(-32px);
    opacity: 0;
}

.slide-right {
    transform: translateX(32px);
    opacity: 0;
}

@media (max-width: 768px) {
    .hero-shell {
        padding-left: 1.35rem;
        padding-right: 1.35rem;
    }

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

    .hero-copy-col {
        text-align: center;
        padding-left: 0.35rem;
        padding-right: 0.35rem;
    }

    .hero-title {
        font-size: 2.05rem;
        line-height: 1.1;
        letter-spacing: -0.035em;
        max-width: 9.5ch;
        margin-bottom: 1.15rem;
        margin-left: auto;
        margin-right: auto;
        text-wrap: pretty;
    }

    .hero-eyebrow {
        display: inline-flex;
        justify-content: center;
        margin-bottom: 1rem;
        padding: 0.55rem 0.9rem;
        font-size: 0.76rem;
        line-height: 1.35;
        max-width: calc(100vw - 4.5rem);
    }

    .hero-lead {
        margin-bottom: 0 !important;
    }

    .hero-lead,
    .hero-footnote {
        font-size: 0.98rem;
        line-height: 1.75;
        text-align: center;
        max-width: 31rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-footnote {
        margin-top: 0.75rem;
        max-width: none;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 1.7rem;
        margin-bottom: 0;
        align-items: stretch;
        max-width: 31rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions .btn,
    .hero-secondary-action {
        width: 100%;
        min-width: 0;
    }

    .hero-actions .btn {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        min-height: 54px;
    }

    .hero-image-col {
        margin-top: 1.35rem;
        text-align: center;
        padding-left: 0.35rem;
        padding-right: 0.35rem;
    }

    .hero-img {
        max-width: 100%;
    }

    .hero-visual {
        width: 100%;
        max-width: none;
        padding: 12px;
        border-radius: 28px;
        margin-left: auto;
        margin-right: auto;
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 2rem;
    }

    .section-process .container::before {
        display: none;
    }

    .process-card {
        min-height: 0;
        padding: 1.35rem 1.2rem;
        border-radius: 22px;
    }

    .process-card::after {
        top: 1rem;
        left: 1rem;
        width: 2.15rem;
        height: 2.15rem;
    }

    .location-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 1.6rem;
    }

    .location-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .section-location h2 {
        font-size: 2.2rem;
        line-height: 1.12;
        margin-bottom: 0.35rem;
    }

    .location-details {
        gap: 0.85rem;
        margin-top: 1.25rem !important;
    }

    .location-item {
        grid-template-columns: 18px 1fr;
        gap: 12px;
    }

    .location-item i {
        margin-top: 0.28rem;
        font-size: 0.95rem;
    }

    .location-item span {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .location-actions .btn {
        min-height: 52px;
    }

    .section-location .container {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    #sobre .px-5,
    #atendimento .px-5 {
        padding-left: calc(var(--bs-gutter-x) * .5) !important;
        padding-right: calc(var(--bs-gutter-x) * .5) !important;
    }

    .about-visual {
        display: flex;
        justify-content: center;
        max-width: 100%;
        width: 100%;
        padding: 0;
        border-radius: 24px;
    }

    .about-img {
        width: min(100%, 450px);
        border-radius: 18px;
        aspect-ratio: 9 / 11;
    }

    .cta-shell {
        padding: 1.5rem;
        border-radius: 28px;
    }

    .cta-title {
        max-width: 9.5ch;
        font-size: 1.95rem;
        line-height: 1.06;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .cta-title strong {
        display: block;
        max-width: 7.5ch;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        text-wrap: balance;
    }

    .cta-copy {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .cta-card {
        padding: 1.3rem;
    }

    .cta-card-line {
        align-items: flex-start;
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .review-grid {
        transition:
            transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
            opacity 260ms ease-out;
    }

    .review-item {
        width: 100%;
        flex: 0 0 100%;
    }

    .review-text {
        min-height: 0;
    }

    .reviews-summary-badge {
        min-width: min(100%, 420px);
        justify-content: center;
    }

    .reviews-intro {
        margin-bottom: 1.8rem;
    }

    .reviews-stage {
        padding: 0;
    }

    .reviews-controls {
        gap: 0.9rem;
        margin-top: 1.1rem;
    }

    .reviews-footer {
        margin-top: 1.4rem;
    }

    .section-reviews .btn-gold {
        width: min(100%, 320px);
    }
}

/* CSS defensivo */

#avaliacoes,
#reviews,
.review-grid {
    overflow-x: hidden;
}

/* IMG loader */

.image-loader {
    position: relative;
    display: inline-block;
    width: 100%;
}

.image-loader img {
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-loader.loaded img {
    opacity: 1;
}

/* loader central */
.image-loader i {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.8rem;
    pointer-events: none;
}

.image-loader.loaded i {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}

.cta-shell {
    padding: 2.5rem;
    border-radius: 36px;
}

.cta-eyebrow {
    margin-bottom: 1rem;
}

.cta-title {
    max-width: 15ch;
    font-size: 2.7rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.cta-title strong {
    display: block;
}

.cta-copy {
    max-width: 620px;
}

.cta-card {
    padding: 1.7rem;
    border-radius: 28px;
}

.cta-card-line {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem 0;
    font-size: 0.95rem;
}

.cta-card-line:last-of-type {
    border-bottom: none;
}

.footer-dark-shell {
}

/* ======================================================
   NUTRI 3 — SEÇÕES NOVAS
   ====================================================== */

.section-fit .row {
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
}

.section-fit {
    border-top: 1px solid rgba(44, 57, 48, 0.08);
    border-bottom: 1px solid rgba(44, 57, 48, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.38);
}

.section-method .row {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.section-method .section-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
}

.section-method .card-soft {
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    box-shadow: 0 20px 46px rgba(21, 36, 27, 0.22) !important;
    backdrop-filter: blur(2px);
}

.section-method .card-soft:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(21, 36, 27, 0.28) !important;
}

.section-method .icon-wrapper {
    background: #ffffff !important;
    border: 1px solid rgba(91, 145, 59, 0.24) !important;
}

.section-method .icon-wrapper i {
    color: var(--primary) !important;
}

.section-method .card-soft h3 {
    color: var(--dark) !important;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.section-method .card-soft p {
    color: rgba(44, 57, 48, 0.84) !important;
}

.card-mini {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--surface-card);
    border: 1px solid var(--border-card-soft);
    border-radius: 26px;
    padding: 1.75rem 1.65rem;
    box-shadow:
        0 18px 34px var(--shadow-accent),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        background 0.4s ease;
}

.card-mini:hover {
    transform: translateY(-9px) scale(1.015);
    border-color: rgba(162, 123, 92, 0.34);
    background: linear-gradient(170deg, #ffffff 0%, #faf8f3 88%);
    box-shadow:
        0 30px 56px rgba(44, 57, 48, 0.20),
        0 8px 22px rgba(162, 123, 92, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.card-mini::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.08)) padding-box,
        linear-gradient(140deg, rgba(162, 123, 92, 0.32), rgba(91, 145, 59, 0.22), rgba(162, 123, 92, 0.08)) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.card-mini::after {
    content: "";
    position: absolute;
    top: -135%;
    left: -42%;
    width: 58%;
    height: 280%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0));
    transform: rotate(18deg) translateX(-120%);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 1;
}

.card-mini:hover::before {
    opacity: 1;
}

.card-mini:hover::after {
    transform: rotate(18deg) translateX(290%);
}

.card-mini-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--highlight-soft);
    color: var(--highlight);
    margin-bottom: 1rem;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.35s ease,
        box-shadow 0.35s ease,
        color 0.35s ease;
    position: relative;
    z-index: 2;
}

.card-mini:hover .card-mini-icon {
    transform: translateY(-2px) scale(1.08);
    background: linear-gradient(145deg, rgba(91, 145, 59, 0.2), rgba(162, 123, 92, 0.17));
    color: var(--primary);
    box-shadow:
        0 10px 20px rgba(44, 57, 48, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.card-mini .card-title {
    font-size: 1.12rem;
    letter-spacing: -0.02em;
    transition: color 0.3s ease, transform 0.35s ease;
    position: relative;
    z-index: 2;
}

.card-mini p {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.card-mini:hover .card-title {
    color: #2c3930;
    transform: translateX(2px);
}

.card-mini:hover p {
    color: rgba(44, 57, 48, 0.9) !important;
}

@media (prefers-reduced-motion: reduce) {
    .card-mini,
    .card-mini::before,
    .card-mini::after,
    .card-mini-icon,
    .card-mini .card-title,
    .card-mini p {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}

.why-row {
    background: var(--surface-card);
    border: 1px solid var(--border-card-soft);
    border-radius: 26px;
    padding: 1.65rem 1.5rem;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: start;
    box-shadow: 0 18px 34px var(--shadow-accent);
}

.why-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--surface-pill);
    border: 1px solid var(--border-card-soft);
    color: var(--accent);
}

.premium-accordion .accordion-item {
    background: var(--surface-card);
    border: 1px solid var(--border-card-soft);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 34px var(--shadow-accent);
}

.premium-accordion .accordion-item + .accordion-item {
    margin-top: 14px;
}

.premium-accordion .accordion-button {
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    padding: 1.2rem 1.25rem;
    box-shadow: none;
}

.premium-accordion .accordion-button:not(.collapsed) {
    color: var(--dark);
    background: var(--surface-pill);
}

.premium-accordion .accordion-body {
    color: var(--text-main);
    padding: 1.15rem 1.25rem 1.25rem;
}

.premium-accordion .accordion-button::after {
    filter: hue-rotate(340deg) saturate(0.8);
}
