/* =========================================================
GLOBAL / FOUNDATION
========================================================= */
:root {
    --hc-bg: #f9f9f9;
    --hc-surface: rgba(255, 255, 255, 0.72);
    --hc-surface-strong: rgba(255, 255, 255, 0.88);
    --hc-text: #01284e;
    --hc-text-soft: rgba(1, 40, 78, 0.6);
    --hc-line: rgba(1, 40, 78, 0.15);
    --hc-accent: #ff4100;
    --hc-accent-dark: #cc3400;
    --hc-accent-secondary: #ffbf00;
    --hc-shadow: 0 24px 60px rgba(32, 28, 23, 0.1);
    --hc-shadow-soft: 0 12px 28px rgba(32, 28, 23, 0.08);

    /* Fontes */
    --font-sans: Arial, sans-serif;
    --font-serif: 'Baskervville', serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--hc-bg);
    color: var(--hc-text);
    font-family: Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
}

.hero-font-serif {
    font-family: 'Baskervville', serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* =========================================================
SECTION 1: HERO
========================================================= */
.hero-homecare {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #fdfdfc 0%, #f0f3f6 62%, #e3eaf0 100%);
}

.hero-shell {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 28px 76px;
    filter: drop-shadow(0 18px 30px rgba(1, 40, 78, 0.08)) drop-shadow(0 4px 12px rgba(1, 40, 78, 0.04));
}

.hero-frame {
    position: relative;
    min-height: 860px;
    overflow: hidden;
    background: #e8ecf1;
    border: 1px solid var(--hc-line);
    box-shadow: 0 4px 12px rgba(1, 40, 78, 0.03);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding: 0 28px;
    pointer-events: none;
    opacity: 0.45;
}

.hero-grid-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(1, 40, 78, 0.06),
            rgba(1, 40, 78, 0.10),
            rgba(1, 40, 78, 0.04));
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(253, 253, 252, 0.92) 0%,
            rgba(253, 253, 252, 0.56) 28%,
            rgba(253, 253, 252, 0.15) 62%,
            rgba(253, 253, 252, 0.02) 100%),
        linear-gradient(180deg,
            rgba(253, 253, 252, 0.02),
            rgba(253, 253, 252, 0.10) 70%,
            rgba(253, 253, 252, 0.16) 100%);
    pointer-events: none;
}

/* Header/Nav Overlay */
.hero-nav-wrap {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    padding: 0 28px;
    pointer-events: none;
}

.hero-nav {
    width: min(100%, 1300px);
    /* Aumentado um pouco para dar mais folga aos cantos */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 12px 10px 18px;
    background: rgba(253, 253, 252, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(1, 40, 78, 0.1);
    box-shadow:
        0 18px 40px rgba(1, 40, 78, 0.14),
        0 6px 18px rgba(1, 40, 78, 0.08);
    clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
    pointer-events: auto;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.hero-brand-img {
    height: 28px;
    width: auto;
    flex: 0 0 auto;
}

.hero-nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.hero-nav-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--hc-text-soft);
    transition: color 180ms ease, opacity 180ms ease;
    text-transform: uppercase;
}

.hero-nav-links a:hover,
.hero-nav-links a.is-active {
    color: var(--hc-accent-secondary);
}

.hero-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    background: var(--hc-accent);
    color: #fcfaf7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 180ms ease, transform 180ms ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.hero-nav-cta:hover {
    background: var(--hc-accent-dark);
    transform: translateY(-1px);
}

/* Content Layout */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 170px 40px 90px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
    min-height: 860px;
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 28px;
    background: rgba(253, 253, 252, 0.7);
    border: 1px solid rgba(1, 40, 78, 0.1);
    color: var(--hc-text);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    background: var(--hc-accent);
    box-shadow: 0 0 0 6px rgba(255, 65, 0, 0.14);
    border-radius: 999px;
    flex: 0 0 auto;
}

.hero-title {
    margin: 0 0 24px;
    font-size: clamp(3.4rem, 7vw, 6.8rem);
    line-height: 0.90;
    letter-spacing: -0.075em;
    font-weight: 500;
    color: var(--hc-text);
}

.hero-title-accent {
    display: block;
    color: var(--hc-text);
}

.hero-description {
    max-width: 510px;
    margin: 0 0 34px;
    padding-left: 18px;
    border-left: 1px solid var(--hc-line);
    font-size: 17px;
    line-height: 1.85;
    color: rgba(1, 40, 78, 0.78);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 26px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hero-btn-primary {
    background: var(--hc-text);
    color: #fcfaf7;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.hero-btn-primary:hover {
    background: #00152b;
    transform: translateY(-1px);
}

.hero-btn-secondary {
    background: rgba(253, 253, 252, 0.72);
    border: 1px solid rgba(1, 40, 78, 0.15);
    color: var(--hc-text);
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.hero-btn-secondary:hover {
    background: rgba(253, 253, 252, 0.95);
    border-color: rgba(1, 40, 78, 0.3);
    transform: translateY(-1px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 430px;
    padding-top: 20px;
    border-top: 1px solid rgba(1, 40, 78, 0.1);
}

.hero-trust-stack {
    display: flex;
    margin-left: 2px;
}

.hero-trust-dot {
    width: 30px;
    height: 30px;
    margin-left: -8px;
    border: 2px solid #f7f3ee;
    border-radius: 999px;
    background: linear-gradient(180deg, #dcd4ca, #cfc7bc);
}

.hero-trust-dot:first-child {
    margin-left: 0;
    background: linear-gradient(180deg, #ece6dd, #d9d0c4);
}

.hero-trust-dot:nth-child(2) {
    background: linear-gradient(180deg, #b9c4b5, #9dad99);
}

.hero-trust-dot:nth-child(3) {
    background: linear-gradient(180deg, #e2d7cb, #ccbda9);
}

.hero-trust-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--hc-text-soft);
}

/* Visual / Floating Card */
.hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-floating-card {
    position: relative;
    width: min(100%, 390px);
    padding: 26px 24px 24px;
    background: rgba(253, 253, 252, 0.92);
    border: 1px solid rgba(1, 40, 78, 0.1);
    backdrop-filter: blur(18px);
    box-shadow: var(--hc-shadow);
    clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.hero-card-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--hc-accent-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-card-title {
    margin: 0 0 18px;
    color: var(--hc-text);
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 600;
}

.hero-card-list {
    display: grid;
    gap: 14px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.hero-card-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
    padding-top: 14px;
    border-top: 1px solid rgba(1, 40, 78, 0.1);
}

.hero-card-item:first-child {
    padding-top: 0;
    border-top: none;
}

.hero-card-icon {
    color: var(--hc-accent);
    margin-top: 1px;
}

.hero-card-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--hc-text);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}

.hero-card-item span {
    display: block;
    color: var(--hc-text-soft);
    font-size: 13px;
    line-height: 1.75;
}

.hero-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid rgba(1, 40, 78, 0.1);
}

.hero-card-meta {
    color: var(--hc-text-soft);
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hc-text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Animations */
@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(28px);
        filter: blur(6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes heroFloatSoft {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-fade-up {
    opacity: 0;
    animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-float-soft {
    animation: heroFloatSoft 7s ease-in-out infinite;
}

.vit-glow {
    animation: vitPulseGlow 3s infinite alternate;
}

@keyframes vitPulseGlow {
    0% {
        box-shadow: 0 0 15px rgba(255, 65, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 35px rgba(255, 65, 0, 0.7);
    }
}

/* Media Queries */
@media (max-width: 1080px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 170px;
    }

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

    .hero-visual {
        min-height: auto;
        justify-content: flex-start;
    }

    .hero-floating-card {
        width: min(100%, 420px);
    }

    .hero-nav-links {
        display: none;
    }
}

@media (max-width: 720px) {
    .hero-shell {
        padding: 14px 14px 28px;
    }

    .hero-frame {
        min-height: 800px;
    }

    .hero-nav-wrap {
        top: 14px;
        left: 14px;
        right: 14px;
        padding: 0;
    }

    .hero-nav {
        padding: 10px 10px 10px 14px;
    }

    .hero-nav-cta {
        min-height: 40px;
        padding: 0 14px;
        font-size: 11px;
    }

    .hero-content {
        min-height: 800px;
        padding: 140px 20px 54px;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1;
    }

    .hero-grid-lines {
        padding: 0 14px;
    }

    .hero-grid-line:nth-child(2),
    .hero-grid-line:nth-child(3) {
        display: none;
    }

    .hero-description {
        padding-left: 14px;
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
    }

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

    .hero-floating-card {
        width: 100%;
    }

    .hero-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
SECTION 2: ABOUT US
========================================================= */
.about-section {
    position: relative;
    width: 100%;
    background: var(--hc-bg);
    padding: 120px 0;
    overflow: hidden;
}

.about-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.about-visual:hover img {
    transform: scale(1.04);
}

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

.about-title {
    margin: 0 0 32px;
    color: var(--hc-text);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 600;
}

.about-title-accent {
    display: block;
    color: var(--hc-text);
}

.about-text-content p {
    color: rgba(1, 40, 78, 0.78);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 20px;
}

.about-text-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1080px) {
    .about-shell {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        aspect-ratio: 16 / 10;
        order: 2;
    }
}

@media (max-width: 720px) {
    .about-section {
        padding: 80px 0;
    }

    .about-shell {
        padding: 0 20px;
        gap: 40px;
    }

    .about-title {
        font-size: 36px;
    }
}

/* =========================================================
SECTION 3: SERVICES (INTERACTIVE SELECTOR)
========================================================= */
.services-section {
    padding: 140px 20px;
    background: #01284e;
    /* Azul Escuro Vitorini */
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-head {
    text-align: center;
    margin-bottom: 60px;
}

.services-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-family: 'Baskervville', serif;
    font-weight: 400;
    margin: 0 0 16px;
    color: #fff;
}

.services-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.interactive-selector {
    display: flex;
    width: 100%;
    max-width: 1100px;
    height: 520px;
    gap: 20px;
}

.selector-option {
    position: relative;
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.selector-option:first-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.selector-option:last-child {
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.selector-option:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.selector-option.active {
    flex: 6;
}

.selector-shadow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    height: 200px;
    background: linear-gradient(to top, rgba(1, 40, 78, 0.95), transparent);
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    opacity: 0;
}

.selector-option.active .selector-shadow {
    bottom: 0;
    opacity: 1;
}

.selector-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    gap: 20px;
    pointer-events: none;
}

.selector-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
}

.selector-option.active .selector-icon {
    background: rgba(255, 255, 255, 0.95);
    border-color: #fff;
    color: #01284e;
}

.selector-info {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.selector-option.active .selector-info {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
}

.selector-main {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.selector-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 900px) {
    .services-section {
        padding: 80px 20px;
    }

    .services-head {
        margin-bottom: 40px;
    }

    .services-title {
        font-size: 36px;
    }

    .services-description {
        font-size: 16px;
    }

    .interactive-selector {
        flex-direction: column;
        height: auto;
        min-height: 700px;
    }

    .selector-option {
        min-height: 120px;
    }

    .selector-label {
        padding: 0 20px;
        bottom: 20px;
        gap: 16px;
    }

    .selector-icon {
        width: 44px;
        height: 44px;
    }

    .selector-info {
        white-space: normal;
        transform: translateY(10px);
    }

    .selector-option.active .selector-info {
        transform: translateY(0);
    }

    .selector-main {
        font-size: 18px;
        line-height: 1.2;
    }

    .selector-sub {
        font-size: 14px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* =========================================================
SECTION 4: ZOOM PARALLAX GALERIA
========================================================= */
.zoom-parallax-section {
    position: relative;
    width: 100%;
}

.parallax-head {
    text-align: center;
    padding: 100px 20px 40px;
    background: var(--hc-bg);
    color: var(--hc-text);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.parallax-container {
    height: 150vh;
    position: relative;
    background: var(--hc-bg);
}

.parallax-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.parallax-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.parallax-el .img-wrapper {
    position: relative;
    width: 25vw;
    height: 25vh;
}

.parallax-el img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Posições das Imagens (Conforme o componente React original) */
.el-1 .img-wrapper {
    width: 25vw;
    height: 25vh;
}

.el-2 .img-wrapper {
    top: -30vh;
    left: 5vw;
    width: 35vw;
    height: 30vh;
}

.el-3 .img-wrapper {
    top: -10vh;
    left: -25vw;
    width: 20vw;
    height: 45vh;
}

.el-4 .img-wrapper {
    top: 0;
    left: 27.5vw;
    width: 25vw;
    height: 25vh;
}

.el-5 .img-wrapper {
    top: 27.5vh;
    left: 5vw;
    width: 20vw;
    height: 25vh;
}

.el-6 .img-wrapper {
    top: 27.5vh;
    left: -22.5vw;
    width: 30vw;
    height: 25vh;
}

.el-7 .img-wrapper {
    top: 22.5vh;
    left: 25vw;
    width: 15vw;
    height: 15vh;
}

@media (max-width: 768px) {
    /* Resetamos o container sticky para rolar naturalmente */
    .parallax-container {
        height: auto;
    }
    .parallax-sticky {
        position: relative;
        height: auto;
        overflow: visible;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px; /* Espaço vertical entre elas */
        padding-bottom: 60px;
    }
    .parallax-el {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
    }
    .parallax-el .img-wrapper {
        position: relative;
        top: 0 !important;
        left: 0 !important;
        width: 85vw !important; /* Maior destaque */
        height: 35vh !important;
    }

    /* Desencontro lateral para manter o visual de colagem irregular */
    .el-1 .img-wrapper { transform: translateX(0); }
    .el-2 .img-wrapper { transform: translateX(-5vw); }
    .el-3 .img-wrapper { transform: translateX(5vw); }
    .el-4 .img-wrapper { transform: translateX(-5vw); }
    .el-5 .img-wrapper { transform: translateX(5vw); }
    .el-6 .img-wrapper { transform: translateX(-5vw); }
    .el-7 .img-wrapper { transform: translateX(5vw); }
}

/* =========================================================
SECTION 5: COMO CONTRATAR (PROCESS)
========================================================= */
.process-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: #ffffff;
    /* Fundo branco para respirar após a galeria */
    overflow: hidden;
}

.process-shell {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Esquerda: Visual */
.process-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.process-img-wrapper {
    position: relative;
    width: 80%;
    aspect-ratio: 4/3;
    transition: transform 0.5s ease;
}

.process-img-wrapper:hover {
    transform: scale(1.02);
}

.process-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Tags Flutuantes */
.process-tag {
    position: absolute;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    color: var(--hc-text);
    z-index: 2;
}

.tag-num {
    background: var(--hc-text);
    color: #fff;
    padding: 8px 12px;
}

.tag-text {
    padding: 8px 16px;
}

.tag-1 {
    top: 15%;
    left: -10%;
}

.tag-2 {
    top: 50%;
    right: -10%;
}

.tag-3 {
    bottom: 10%;
    left: 10%;
}

/* Direita: Conteúdo */
.process-content {
    max-width: 500px;
}

.process-title {
    font-family: var(--font-sans);
    font-size: 56px;
    font-weight: 700;
    color: var(--hc-text);
    line-height: 1.1;
    margin-bottom: 24px;
}

.process-title .title-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: flex;
    gap: 24px;
}

.step-num {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 600;
    color: var(--hc-text);
    line-height: 1.2;
}

.step-info h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--hc-text);
}

.step-info p {
    font-size: 15px;
    color: var(--hc-text-light);
    line-height: 1.6;
}

/* Responsivo Processo */
@media (max-width: 900px) {
    .process-section {
        padding: 80px 0;
    }

    .process-shell {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .process-title {
        font-size: 36px;
    }

    .process-visual {
        aspect-ratio: 4/3;
    }

    .process-img-wrapper {
        width: 100%;
    }
}

/* =========================================================
SECTION 6: DEPOIMENTOS (TESTIMONIALS)
========================================================= */
.testimonials-section {
    padding: 140px 0;
    background: #f2f6fa;
    /* Azul extra claro e elegante para separar as seções */
    border-top: 1px solid var(--hc-line);
    overflow: hidden;
}

.testim-header-area {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.testim-eyebrow {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--hc-line);
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--hc-text-soft);
    text-transform: uppercase;
}

.testim-subtitle {
    margin-top: 32px;
    font-size: 17px;
    color: var(--hc-text-soft);
    line-height: 1.8;
    font-weight: 300;
}

/* Slider / Carousel */
.testim-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.testim-slider {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 40px;
    /* Esconder scrollbar nativa */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.testim-slider::-webkit-scrollbar {
    display: none;
}

/* Card Geometry */
.testim-card {
    flex: 0 0 420px;
    scroll-snap-align: center;
    background: #ffffff;
    padding: 56px 48px;
    border: 1px solid var(--hc-line);
    box-shadow: var(--hc-shadow-soft);
    /* Chanfro sutil e elegante */
    clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.testim-card:hover {
    transform: translateY(-8px);
}

.testim-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.testim-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--hc-line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--hc-text);
}

.testim-stars {
    color: var(--hc-accent-secondary);
    /* Dourado da Vitorini */
    display: flex;
    gap: 2px;
}

.testim-text {
    font-family: var(--font-serif);
    font-size: 19px;
    color: var(--hc-text-soft);
    line-height: 1.8;
    margin-bottom: 48px;
    font-style: italic;
    font-weight: 300;
}

.testim-author h4 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--hc-text);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.testim-author span {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--hc-text-soft);
    text-transform: uppercase;
    display: block;
}

/* Controles */
.testim-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.testim-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid var(--hc-line);
    color: var(--hc-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.testim-btn:hover {
    background: var(--hc-text);
    color: #ffffff;
}

.testim-dots {
    display: flex;
    gap: 8px;
}

.t-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hc-line);
    transition: all 0.3s ease;
}

.t-dot.active {
    background: var(--hc-text);
    transform: scale(1.5);
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testim-header-area {
        margin-bottom: 40px;
    }

    .testim-subtitle {
        font-size: 15px;
    }

    .testim-card {
        flex: 0 0 85vw;
        padding: 40px 24px;
    }

    .testim-text {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

/* =========================================================
SECTION 7: CTA / ORÇAMENTO
========================================================= */
.cta-section {
    padding: 120px 0 160px;
    background: #ffffff;
    /* Fundo branco puro para separar dos depoimentos e destacar o card */
    overflow: hidden;
}

.cta-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.cta-card {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--hc-line);
    box-shadow: var(--hc-shadow-soft);
    /* Chanfros duplos Vitorini Geometry */
    clip-path: polygon(32px 0, 100% 0, 100% calc(100% - 32px), calc(100% - 32px) 100%, 0 100%, 0 32px);
}

.cta-left {
    flex: 1;
    background: var(--hc-bg);
    /* Fundo padrão do design system para contraste suave */
    padding: 80px 60px;
}

.cta-right {
    flex: 1;
    background: #ffffff;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-left-title {
    font-family: var(--font-sans);
    font-size: 52px;
    font-weight: 600;
    line-height: 1.05;
    color: var(--hc-text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-left-title .title-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.cta-left-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--hc-text-soft);
    margin-bottom: 48px;
    font-weight: 300;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--hc-text-soft);
    font-weight: 400;
    line-height: 1.4;
}

.cta-benefits li iconify-icon {
    color: var(--hc-accent);
    /* Destaque laranja da Vitorini */
    flex: 0 0 auto;
    margin-top: 2px;
}

.cta-right-content {
    max-width: 400px;
    width: 100%;
}

@media (max-width: 900px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-card {
        flex-direction: column;
        margin: 0 20px;
        clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
    }

    .cta-left,
    .cta-right {
        padding: 40px 24px;
    }

    .cta-left-title {
        font-size: 36px;
    }

    .cta-left-desc {
        font-size: 15px;
        margin-bottom: 32px;
    }
}

/* =========================================================
SECTION 8: FOOTER
========================================================= */
.site-footer {
    background: var(--hc-text);
    /* Fundo azul escuro */
    color: #ffffff;
    /* Textos base em branco */
    padding: 100px 40px 60px;
    font-family: var(--font-sans);
}

.footer-top {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-col p,
.footer-col ul {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-col ul a:hover {
    color: #ffffff;
}

.footer-logo {
    width: 140px;
    margin-bottom: 32px;
    filter: brightness(0) invert(1) opacity(0.85);
    /* Logo branca no fundo azul */
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(0) invert(1) opacity(1);
}

.footer-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    transition: transform 0.2s ease, color 0.2s ease;
}

.footer-cta-link:hover {
    transform: translateX(4px);
    color: var(--hc-accent);
}

.footer-bottom {
    max-width: 1300px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.fb-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.fb-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.fb-links {
    display: flex;
    gap: 24px;
}

.fb-links a {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.fb-links a:hover {
    color: #ffffff;
}

.fb-social {
    display: flex;
    gap: 12px;
}

.fb-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.fb-social a:hover {
    background: #ffffff;
    color: var(--hc-text);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 60px 20px 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .fb-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}