/* Camada de marca SoulCont: adicionada sobre a interface existente sem alterar componentes funcionais. */
:root {
    --soul-navy: #0f2233;
    --soul-gold: #c8a86b;
    --soul-ivory: #f4f1ea;
    --color-navy-950: #071b2e;
    --color-navy-800: #0d2e4a;
    --color-cream: #f7f4ee;
    --color-gold: #c7a15a;
    --color-gold-soft: #e8d4a7;
    --color-ink: #182431;
    --color-muted: #66727e;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --container: 1200px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 3000;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--color-gold);
    color: var(--color-navy-950);
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid var(--color-gold-soft);
    outline-offset: 3px;
}

header .logo a.soulcont-wordmark,
.footer-brand-v2 a.soulcont-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 0.08em;
    color: var(--soul-ivory);
    font-family: "Syne", "Inter", sans-serif;
    font-size: clamp(1.15rem, 2.4vw, 1.65rem);
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1;
    text-decoration: none;
}

header .logo a.soulcont-wordmark img.soulcont-wordmark__mark,
.footer-brand-v2 a.soulcont-wordmark img.soulcont-wordmark__mark {
    display: block;
    width: 36px !important;
    height: 44px !important;
    max-width: 36px !important;
    max-height: 44px !important;
    flex: 0 0 36px;
    margin-right: 0.18em;
    object-fit: contain;
}

.footer-brand-v2 a.soulcont-wordmark {
    margin-bottom: 16px;
}

.soulcont-wordmark strong {
    color: var(--soul-gold);
    font-weight: 800;
}

@media (max-width: 640px) {
    header .logo a.soulcont-wordmark img.soulcont-wordmark__mark {
        width: 30px !important;
        height: 38px !important;
        max-width: 30px !important;
        max-height: 38px !important;
        flex-basis: 30px;
    }
}

.soulcont-team-hero {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 16px;
    min-height: 100%;
}

.soulcont-team-hero__label {
    color: var(--soul-gold);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.soulcont-team-hero__photos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.soulcont-team-hero__person {
    margin: 0;
    position: relative;
    aspect-ratio: 0.72;
    overflow: hidden;
    border: 1px solid rgba(200, 168, 107, 0.26);
    border-radius: 18px;
    background: #122940;
}

.soulcont-team-hero__person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
    display: block;
}

.soulcont-team-hero__person:first-child img { object-position: 50% 10%; }
.soulcont-team-hero__person:last-child img { object-position: 50% 8%; }

.soulcont-team-hero__caption {
    position: absolute;
    inset: auto 0 0;
    padding: 34px 13px 13px;
    background: linear-gradient(transparent, rgba(8, 20, 32, 0.96));
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}

.soulcont-team-hero__caption span {
    display: block;
    margin-top: 4px;
    color: var(--soul-gold);
    font-size: 0.68rem;
    font-weight: 500;
}

.soulcont-team-hero__copy {
    margin: 0;
    color: var(--soul-ui-text-soft);
    font-size: 0.92rem;
    line-height: 1.6;
}

.hero-responsible-line {
    max-width: 530px;
    margin: 20px 0 0;
    color: var(--soul-ui-text-soft);
    font-size: 0.78rem;
    line-height: 1.55;
}

.hero-actions-v2 .btn-v2-primary {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-navy-950);
}

.hero-actions-v2 .btn-v2-secondary {
    border-color: rgba(232, 212, 167, 0.72);
    background: transparent;
    color: var(--soul-ivory);
}

.hero-proof-stat strong {
    min-height: 0;
    color: var(--soul-ivory);
    font-size: clamp(1rem, 1.45vw, 1.25rem);
    line-height: 1.35;
}

.hero-proof-stat p {
    margin-top: 7px;
}

.soulcont-faq__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.soulcont-faq__grid details {
    border: 1px solid var(--soul-ui-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
    padding: 18px;
}

.soulcont-faq__grid summary {
    cursor: pointer;
    color: var(--soul-ui-navy);
    font-weight: 800;
    line-height: 1.4;
}

.soulcont-faq__grid p {
    margin: 12px 0 0;
    color: var(--soul-ui-text-soft);
    font-size: 0.93rem;
    line-height: 1.6;
}

.soulcont-team-member {
    grid-template-columns: 120px minmax(0, 1fr);
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--soul-ui-line);
}

.soulcont-team-member img {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    object-fit: cover;
}

.soulcont-feature-section {
    padding-top: 28px;
}

.soulcont-feature-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: clamp(28px, 6vw, 84px);
}

.soulcont-feature-story--reverse {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.soulcont-feature-story__image {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-navy-950);
}

.soulcont-feature-story__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.soulcont-feature-story__copy h2 {
    max-width: 18ch;
    margin: 16px 0;
    color: var(--soul-ivory);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.5vw, 3.35rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.soulcont-feature-story__copy p {
    max-width: 58ch;
    color: var(--soul-ui-text-soft);
    font-size: 1rem;
    line-height: 1.7;
}

.soulcont-feature-story__copy .text-link-v2 {
    display: inline-flex;
    margin-top: 8px;
}

@media (max-width: 860px) {
    .soulcont-faq__grid { grid-template-columns: 1fr; }
    .soulcont-feature-story,
    .soulcont-feature-story--reverse { grid-template-columns: 1fr; gap: 28px; }
    .soulcont-feature-story--reverse .soulcont-feature-story__copy { order: 2; }
    .soulcont-team-member { grid-template-columns: 1fr; text-align: center; }
    .soulcont-team-member img { margin: 0 auto; }
}

@media (max-width: 640px) {
    body { overflow-x: hidden; }

    .hero-home-copy h1 {
        font-size: clamp(2.35rem, 10.5vw, 3.1rem);
        line-height: 0.98;
    }

    .hero-actions-v2,
    .cta-actions-v2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-actions-v2 .btn-v2,
    .cta-actions-v2 .btn-v2 {
        width: 100%;
        justify-content: center;
    }

    .hero-direct-links {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 14px;
    }

    .hero-direct-link {
        min-height: 48px;
        font-size: 0.88rem;
    }

    .soulcont-team-hero { gap: 12px; }
    .soulcont-team-hero__photos { gap: 8px; }
    .soulcont-team-hero__person { border-radius: 14px; }
    .soulcont-team-hero__caption { font-size: 0.68rem; padding: 28px 9px 9px; }
    .soulcont-team-hero__caption span { font-size: 0.61rem; }
    .soulcont-team-hero__copy { font-size: 0.87rem; }
}

/* Composição editorial da Home: fotos reais como foco, sem painel de interface. */
body.home-page .legacy-analyst-scene {
    display: none;
}

body.home-page .hero-home-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    align-items: center;
    gap: clamp(32px, 4vw, 72px);
}

body.home-page .hero-home-copy {
    align-self: center;
    padding: 34px 0 30px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-team {
    position: relative;
    min-width: 0;
    padding: 20px 0 0;
}

.hero-team::before {
    content: "";
    position: absolute;
    top: 13%;
    bottom: 7%;
    left: 50%;
    width: 1px;
    background: rgba(199, 161, 90, 0.56);
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-team__eyebrow {
    position: relative;
    z-index: 3;
    margin: 0 0 14px;
    color: var(--color-gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-team__stage {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(12px, 2vw, 26px);
    padding-right: 12px;
}

.hero-team__portrait {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #0d2e4a;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.hero-team__portrait--vitor {
    margin-top: 0;
}

.hero-team__portrait--leonardo {
    margin-top: clamp(28px, 4.2vw, 58px);
}

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

.hero-team__portrait--vitor img { object-position: 50% 8%; }
.hero-team__portrait--leonardo img { object-position: 50% 6%; }

.hero-team__portrait figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    gap: 3px;
    padding: 44px 14px 14px;
    background: linear-gradient(transparent, rgba(7, 27, 46, 0.96) 64%);
    color: var(--color-cream);
}

.hero-team__portrait figcaption strong {
    font-size: clamp(0.72rem, 1.15vw, 0.92rem);
    line-height: 1.25;
}

.hero-team__portrait figcaption span {
    color: var(--color-gold-soft);
    font-size: clamp(0.62rem, 0.95vw, 0.74rem);
    font-weight: 600;
    line-height: 1.25;
}

@media (max-width: 1180px) {
    body.home-page .hero-home-grid {
        grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
        gap: clamp(24px, 3vw, 42px);
    }
}

@media (max-width: 860px) {
    body.home-page .hero-home-grid {
        grid-template-columns: 1fr;
    }

    .hero-team {
        width: min(100%, 650px);
        margin: 0 auto;
        padding-top: 8px;
    }

    .hero-team__stage {
        padding-right: 18px;
    }
}

@media (max-width: 640px) {
    .hero-team {
        width: min(100%, 430px);
    }

    .hero-team::before {
        top: 8%;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-team__stage {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-right: 10px;
    }

    .hero-team__portrait {
        width: min(100%, 340px);
        margin-right: auto;
        margin-left: auto;
    }

    .hero-team__portrait--leonardo {
        margin-top: 0;
    }

    .hero-team__portrait figcaption {
        padding: 58px 16px 16px;
    }

    .hero-team__portrait figcaption strong { font-size: 0.92rem; }
    .hero-team__portrait figcaption span { font-size: 0.75rem; }
}

/* Ajuste fiel à maquete: o hero é uma composição aberta, não um dashboard. */
body.home-page .hero-bg-interactive {
    display: none;
}

body.home-page .hero-home-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(560px, 1.04fr);
    align-items: center;
    gap: clamp(28px, 3.4vw, 62px);
}

body.home-page .hero-home-copy {
    padding: 76px 0 72px;
    background: none !important;
    border: 0 !important;
    border-radius: 0;
    box-shadow: none !important;
}

body.home-page .hero-home-copy h1 {
    max-width: 11.6ch;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3.15rem, 5.2vw, 5.1rem);
    font-weight: 700;
    line-height: 0.96;
}

.hero-team {
    padding: 0;
    opacity: 1 !important;
    transform: none !important;
}

@media (min-width: 981px) {
    .hero-team {
        transform: translateX(clamp(20px, 3vw, 44px)) !important;
    }
}

.hero-team::before {
    display: none;
}

.hero-team__eyebrow {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.hero-team__stage {
    display: block;
    min-height: clamp(490px, 39vw, 620px);
    padding: 0;
}

.hero-team__portrait {
    position: absolute;
    width: clamp(230px, 18.75vw, 360px);
    overflow: visible;
    aspect-ratio: auto;
    background: transparent;
    box-shadow: none;
}

.hero-team__portrait--vitor {
    top: 0;
    left: 0;
}

.hero-team__portrait--leonardo {
    top: clamp(38px, 3.5vw, 64px);
    left: clamp(248px, 20vw, 385px);
    margin-top: 0;
}

.hero-team__portrait img {
    aspect-ratio: 3 / 4;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.hero-team__portrait figcaption {
    position: static;
    display: grid;
    gap: 3px;
    padding: 11px 0 0;
    background: none;
    color: var(--color-cream);
}

.hero-team__portrait figcaption strong {
    font-size: clamp(0.82rem, 1.15vw, 1rem);
}

.hero-team__portrait figcaption span {
    color: var(--color-gold);
    font-size: clamp(0.68rem, 0.92vw, 0.78rem);
}

body.home-page .hero-proof-band {
    gap: 0;
    margin-top: 0;
    border-top: 1px solid rgba(199, 161, 90, 0.32);
    border-bottom: 1px solid rgba(199, 161, 90, 0.22);
}

body.home-page .hero-proof-stat {
    padding: 22px 24px;
    border: 0;
    border-right: 1px solid rgba(199, 161, 90, 0.2);
    border-radius: 0;
    background: none;
    box-shadow: none;
}

body.home-page .hero-proof-stat:last-child {
    border-right: 0;
}

@media (max-width: 1180px) {
    body.home-page .hero-home-grid {
        grid-template-columns: minmax(0, 0.84fr) minmax(500px, 1.16fr);
    }
}

@media (max-width: 980px) {
    body.home-page .hero-home-grid {
        grid-template-columns: 1fr;
    }

    body.home-page .hero-home-copy {
        padding: 58px 0 34px;
    }

    .hero-team {
        width: min(100%, 680px);
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    body.home-page .hero-home-copy {
        padding: 42px 0 30px;
    }

    body.home-page .hero-home-copy h1 {
        max-width: 10.8ch;
        font-size: clamp(2.65rem, 12vw, 3.35rem);
    }

    .hero-team {
        width: 100%;
    }

    .hero-team__stage {
        display: grid;
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-team__portrait,
    .hero-team__portrait--vitor,
    .hero-team__portrait--leonardo {
        position: relative;
        top: auto;
        left: auto;
        width: min(100%, 320px);
        margin: 0 auto;
    }

    .hero-team__portrait figcaption {
        padding-top: 10px;
    }

    body.home-page .hero-proof-band {
        grid-template-columns: 1fr;
        margin-top: 34px;
    }

    body.home-page .hero-proof-stat {
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(199, 161, 90, 0.18);
    }

    body.home-page .hero-proof-stat:last-child {
        border-bottom: 0;
    }
}

/* Refinamento comercial: hierarquia mais serena, contraste e movimento discreto. */
:root {
    --soul-transition: 220ms cubic-bezier(.2, .7, .25, 1);
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.section-heading h2,
.page-hero h1,
.detail-hero h1,
.final-cta-panel h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.018em;
}

.section-heading p,
.page-hero p,
.detail-hero p,
.final-cta-panel p {
    max-width: 66ch;
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.7;
}

header {
    min-height: 76px;
    padding: 10px 24px;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

header.scrolled {
    min-height: 68px;
    padding: 8px 22px;
    border-color: rgba(199, 161, 90, 0.3);
}

.header-cta {
    width: auto !important;
    min-height: 42px;
    height: 42px !important;
    padding: 0 16px;
    border-radius: 10px !important;
    border-color: var(--color-gold) !important;
    background: var(--color-gold) !important;
    color: var(--color-navy-950) !important;
    font-family: "Inter", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
    background: var(--color-gold-soft) !important;
    transform: translateY(-1px);
}

body.home-page .social-icons > a:not(.header-cta) {
    display: none;
}

.btn-v2 {
    min-height: 50px;
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    letter-spacing: -0.01em;
}

.btn-v2-primary,
.btn-v2-whatsapp {
    color: var(--color-navy-950);
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 14px 30px rgba(199, 161, 90, 0.2);
}

.btn-v2-primary:hover,
.btn-v2-whatsapp:hover {
    background: var(--color-gold-soft);
    border-color: var(--color-gold-soft);
    color: var(--color-navy-950);
}

.btn-v2-secondary {
    border-color: rgba(247, 244, 238, 0.3);
    background: transparent;
}

.btn-v2:focus-visible,
.header-cta:focus-visible,
.text-link-v2:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--color-gold-soft);
    outline-offset: 3px;
}

.text-link-v2 {
    text-underline-offset: 5px;
    text-decoration-color: rgba(199, 161, 90, 0.45);
    transition: color var(--soul-transition), text-decoration-color var(--soul-transition);
}

.text-link-v2:hover {
    color: var(--color-gold-soft);
    text-decoration-color: currentColor;
}

.offer-footer .text-link-v2,
.service-anchor-row a,
.contact-card-v2 .text-link-v2 {
    min-height: 44px;
    padding: 0 10px;
}

.whatsapp-float {
    right: max(18px, calc(12px + env(safe-area-inset-right)));
    bottom: max(20px, calc(12px + env(safe-area-inset-bottom)));
}

body.has-cookie-banner .whatsapp-float {
    visibility: hidden;
}

body.home-page .audience-fusion-panel,
body.home-page .services-home-panel {
    border-radius: 22px;
}

body.home-page .audience-track-bar,
body.home-page .proof-support-bar {
    opacity: 0.62;
}

.soul-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 560ms ease, transform 560ms cubic-bezier(.2, .7, .25, 1);
    transition-delay: var(--soul-reveal-delay, 0ms);
}

.soul-reveal.is-visible {
    opacity: 1;
    transform: none;
}

details > summary {
    transition: color var(--soul-transition);
}

details[open] > summary {
    color: var(--color-gold-soft);
}

@media (max-width: 980px) {
    header {
        min-height: 68px;
        padding: 9px 18px;
    }

    .header-cta {
        display: none !important;
    }

    body.home-page .hero-home-copy {
        padding-bottom: 22px;
    }

    body.home-page .hero-responsible-line {
        margin-top: 16px;
    }
}

@media (max-width: 640px) {
    body.home-page .hero-home-copy {
        padding-top: 32px;
        padding-bottom: 18px;
    }

    body.home-page .hero-eyebrow-stack .eyebrow-label {
        min-height: 32px;
        padding: 0 11px;
        font-size: 0.65rem;
    }

    body.home-page .hero-home-copy h1 {
        font-size: clamp(2.35rem, 10.9vw, 3.02rem);
    }

    body.home-page .hero-home-copy p {
        font-size: 0.98rem;
        line-height: 1.58;
    }

    body.home-page .hero-actions-v2 {
        margin-top: 18px;
    }

    .whatsapp-float {
        right: max(14px, calc(10px + env(safe-area-inset-right)));
        bottom: max(24px, calc(14px + env(safe-area-inset-bottom)));
    }

    .soul-reveal {
        transform: none;
        transition-duration: 260ms;
    }
}

@media (prefers-reduced-motion: reduce) {
    .soul-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
    }
}

/* Experiencia mobile: leitura, toque e carregamento priorizados na pagina inicial. */
@media (max-width: 640px) {
    body.home-page {
        font-size: 16px;
    }

    body.home-page header,
    body.home-page header.scrolled {
        min-height: 68px !important;
        padding: 8px 12px !important;
        background: #0f2233 !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    }

    body.home-page header .logo a.soulcont-wordmark {
        min-height: 44px;
        font-size: 1.08rem;
        letter-spacing: 0.11em;
    }

    body.home-page .site-main-v2 {
        padding-top: 72px;
    }

    body.home-page .section-block {
        padding: 12px 0;
    }

    body.home-page .section-shell {
        width: min(calc(100% - 20px), var(--soul-ui-max));
    }

    body.home-page .section-panel,
    body.home-page .final-cta-panel {
        padding: 18px;
        border-radius: 18px;
    }

    body.home-page .section-heading {
        margin-bottom: 20px;
    }

    body.home-page .section-heading h2,
    body.home-page .final-cta-panel h2 {
        font-size: clamp(2rem, 9.5vw, 2.55rem);
        line-height: 1.02;
    }

    body.home-page .section-heading p,
    body.home-page .final-cta-panel p {
        font-size: 1rem;
        line-height: 1.62;
    }

    body.home-page .hero-home-copy {
        padding-top: 20px;
        padding-bottom: 12px;
    }

    body.home-page .hero-eyebrow-stack .eyebrow-label {
        min-height: 36px;
        padding: 7px 11px;
        font-size: 0.75rem;
        line-height: 1.25;
    }

    body.home-page .hero-home-copy h1 {
        max-width: 10ch;
        margin-top: 16px;
        font-size: clamp(2.65rem, 12vw, 3.15rem);
        line-height: 0.94;
    }

    body.home-page .hero-home-copy p {
        font-size: 1rem;
        line-height: 1.55;
    }

    body.home-page .hero-home-copy > p:not(.hero-responsible-line) {
        text-align: justify;
        text-align-last: left;
        text-justify: inter-word;
        hyphens: auto;
    }

    body.home-page .hero-actions-v2 {
        margin-top: 16px;
    }

    body.home-page .hero-responsible-line {
        margin-top: 14px;
        font-size: 0.78rem;
        line-height: 1.5;
    }

    body.home-page .hero-team__stage {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    body.home-page .hero-team__portrait,
    body.home-page .hero-team__portrait--vitor,
    body.home-page .hero-team__portrait--leonardo {
        width: 100%;
        margin: 0;
    }

    body.home-page .hero-team__portrait img {
        border-radius: 12px;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
    }

    body.home-page .hero-team__portrait figcaption {
        gap: 2px;
        padding-top: 8px;
    }

    body.home-page .hero-team__portrait figcaption strong {
        font-size: 0.78rem;
        line-height: 1.25;
    }

    body.home-page .hero-team__portrait figcaption span {
        font-size: 0.68rem;
        line-height: 1.3;
    }

    body.home-page .hero-proof-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        margin-top: 24px;
    }

    body.home-page .hero-proof-stat,
    body.home-page .hero-proof-stat:last-child {
        padding: 14px 10px;
        border-right: 0;
        border-bottom: 1px solid rgba(199, 161, 90, 0.18);
    }

    body.home-page .hero-proof-stat:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    body.home-page .hero-proof-stat strong {
        font-size: 0.92rem;
    }

    body.home-page .hero-proof-stat p {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    body.home-page .audience-callout-card,
    body.home-page .proof-support-card,
    body.home-page .dre-insight-card {
        padding: 18px;
        border-radius: 18px;
    }

    body.home-page .audience-callout-card h3 {
        font-size: 1.42rem;
    }

    body.home-page .audience-track-meta {
        display: grid;
        gap: 5px;
    }

    body.home-page .audience-track-meta span,
    body.home-page .audience-track-meta strong {
        font-size: 0.82rem;
        text-align: left;
    }

    body.home-page .audience-grid,
    body.home-page .services-home-grid,
    body.home-page .process-grid,
    body.home-page .trust-metric-row {
        display: grid;
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(270px, 86%);
        gap: 12px;
        margin-right: -18px;
        padding: 2px 18px 10px 2px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-padding-inline: 2px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    body.home-page .audience-grid::-webkit-scrollbar,
    body.home-page .services-home-grid::-webkit-scrollbar,
    body.home-page .process-grid::-webkit-scrollbar,
    body.home-page .trust-metric-row::-webkit-scrollbar {
        display: none;
    }

    body.home-page .audience-grid > *,
    body.home-page .services-home-grid > *,
    body.home-page .process-grid > *,
    body.home-page .trust-metric-row > * {
        min-width: 0;
        scroll-snap-align: start;
    }

    body.home-page .audience-card-v3,
    body.home-page .offer-card-v2--spotlight,
    body.home-page .process-card {
        padding: 18px;
        border-radius: 18px;
    }

    body.home-page .audience-card-v3 {
        min-height: 330px;
    }

    body.home-page .offer-card-v2--spotlight {
        min-height: 360px;
    }

    body.home-page .process-card {
        min-height: 260px;
    }

    body.home-page .soulcont-feature-story {
        gap: 20px;
    }

    body.home-page .soulcont-feature-story__image {
        border-radius: 18px;
    }

    body.home-page .soulcont-feature-story__copy h2 {
        margin: 12px 0;
        font-size: clamp(2rem, 9.5vw, 2.55rem);
    }

    body.home-page .dre-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 12px;
        padding: 13px 14px;
        border-radius: 14px;
    }

    body.home-page .dre-bar-track {
        grid-column: 1 / -1;
    }

    body.home-page .soulcont-team-member,
    body.home-page .responsible-card .soulcont-team-member {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
        text-align: left;
    }

    body.home-page .soulcont-team-member img,
    body.home-page .responsible-card .soulcont-team-member img {
        width: 72px;
        height: 88px;
        margin: 0;
        border-radius: 14px;
    }

    body.home-page .soulcont-team-member p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    body.home-page .reviews-heading-row {
        gap: 16px;
        margin-bottom: 20px;
    }

    body.home-page .google-rating-summary {
        display: flex;
        width: 100%;
        max-width: none;
        flex-wrap: wrap;
        align-items: center;
        gap: 7px 12px;
        padding: 14px 16px;
        border-radius: 16px;
    }

    body.home-page .google-rating-summary__brand {
        flex-basis: 100%;
    }

    body.home-page .google-rating-summary__score {
        font-size: 2rem;
    }

    body.home-page .reviews-carousel__track {
        grid-auto-columns: 92%;
        gap: 12px;
    }

    body.home-page .review-card {
        min-height: 290px;
        padding: 18px;
        border-radius: 18px;
    }

    body.home-page .reviews-google-link,
    body.home-page .text-link-v2,
    body.home-page .footer-group-v2 a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    body.home-page .soulcont-faq__grid details {
        padding: 16px;
    }

    body.home-page .whatsapp-float {
        width: 52px !important;
        height: 52px !important;
    }

    body.home-page .audience-track-bar::after,
    body.home-page .proof-support-bar::after,
    body.home-page .mini-tax-bar::after,
    body.home-page .mini-spark-bar::after,
    body.home-page .audience-card-v3 .card-icon i,
    body.home-page .whatsapp-float {
        animation: none !important;
    }

    body.home-page .mini-spark-chart polyline {
        animation: none !important;
        stroke-dashoffset: 0;
    }
}

@media (max-width: 360px) {
    body.home-page header .logo a.soulcont-wordmark {
        font-size: 1rem;
        letter-spacing: 0.08em;
    }

    body.home-page .hero-home-copy h1 {
        font-size: 2.55rem;
    }

    body.home-page .hero-team__portrait figcaption strong {
        font-size: 0.72rem;
    }

    body.home-page .hero-team__portrait figcaption span {
        font-size: 0.64rem;
    }

    body.home-page .audience-grid,
    body.home-page .services-home-grid,
    body.home-page .process-grid,
    body.home-page .trust-metric-row {
        grid-auto-columns: minmax(258px, 90%);
    }
}
