        /* ================================================
           PALETA ESTRITA — SEM EXCEÇÕES
           ================================================ */
        :root {
            --p:  #5C715A;          /* Primária — Verde */
            --s:  #B29E93;          /* Secundária — Areia */
            --a1: #FDE1CB;          /* Apoio 1 — Bege */
            --a2: #CAC9C9;          /* Apoio 2 — Cinza Claro */

            /* rgba derivadas — NÃO são novas cores, são opacidades */
            --p-08:  rgba(92,113,90,.08);
            --p-12:  rgba(92,113,90,.12);
            --p-20:  rgba(92,113,90,.20);
            --p-35:  rgba(92,113,90,.35);
            --p-60:  rgba(92,113,90,.60);
            --p-85:  rgba(92,113,90,.85);
            --s-10:  rgba(178,158,147,.10);
            --s-20:  rgba(178,158,147,.20);
            --s-40:  rgba(178,158,147,.40);
            --a1-40: rgba(253,225,203,.40);
            --a1-60: rgba(253,225,203,.60);
            --a2-15: rgba(202,201,201,.15);
            --a2-30: rgba(202,201,201,.30);
            --a2-50: rgba(202,201,201,.50);
            --white-85: rgba(255,255,255,.85);
            --white-95: rgba(255,255,255,.95);

            --font-display: 'Cormorant Garamond', serif;
            --font-body:    'DM Sans', sans-serif;
        }

        /* ================================================
           RESET & GLOBALS
           ================================================ */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        html {
            scroll-padding-top: 88px;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: #fafafa;
            color: #1a1a1a;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        ::selection { background: var(--s); color: #fff; }

        /* ================================================
           TYPOGRAPHY SYSTEM
           ================================================ */
        .eyebrow {
            font-family: var(--font-body);
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--s);
            display: block;
            margin-bottom: .9rem;
        }

        .display-title {
            font-family: var(--font-display);
            font-weight: 300;
            line-height: 1.05;
            letter-spacing: -.02em;
        }

        .display-title strong {
            font-weight: 700;
            color: var(--p);
        }

        /* ================================================
           NAVBAR — GLASSMORPHISM
           ================================================ */
        #navbar {
            background: var(--white-85) !important;
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border-bottom: 1px solid var(--a2-30);
            padding: 16px 0;
            transition: padding .4s ease, box-shadow .4s ease, background .4s ease;
        }

        #navbar.scrolled {
            padding: 10px 0;
            background: var(--white-95) !important;
            box-shadow: 0 8px 32px rgba(92,113,90,.06);
        }

        .navbar-brand img {
            height: 60px;
            width: auto;
            object-fit: contain;
        }

        .navbar-toggler {
            border: none !important;
            box-shadow: none !important;
            padding: 4px 8px;
        }

        .nav-link {
            font-family: var(--font-body);
            font-size: .88rem;
            font-weight: 600;
            letter-spacing: .04em;
            color: #1a1a1a !important;
            padding: .5rem 1.1rem !important;
            position: relative;
            transition: color .3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 2px; left: 50%;
            width: 0; height: 1.5px;
            background: var(--s);
            transform: translateX(-50%);
            transition: width .35s cubic-bezier(.165,.84,.44,1);
        }

        .nav-link:hover,
        .nav-link.active { color: var(--p) !important; }

        .nav-link:hover::after,
        .nav-link.active::after { width: 60%; }

        .btn-area-cliente {
            font-family: var(--font-body);
            font-size: .85rem;
            font-weight: 700;
            letter-spacing: .06em;
            color: #fff !important;
            background: var(--p);
            border: none;
            border-radius: 50px;
            padding: .6rem 1.6rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            transition: all .35s cubic-bezier(.165,.84,.44,1);
            box-shadow: 0 8px 24px var(--p-20);
        }

        .btn-area-cliente:hover {
            background: var(--p-85);
            transform: translateY(-3px);
            box-shadow: 0 14px 32px var(--p-35);
            color: #fff !important;
        }

        /* ================================================
           HERO — IMERSIVA & FLUTUANTE
           ================================================ */
        .hero {
            min-height: 100vh;
            background: var(--p);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 88px;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: /*url('../Marca-Evolua/MARCASDAGUAS/marcasd%C3%A1guas-08.png')*/ center / cover no-repeat fixed;
            opacity: .1;
            pointer-events: none;
            z-index: 1;
        }

        /* orbs decorativos — apenas rgba da paleta */
        .hero::after {
            content: '';
            position: absolute;
            bottom: -180px; right: -180px;
            width: 560px; height: 560px;
            background: var(--a1-40);
            border-radius: 50%;
            filter: blur(120px);
            z-index: 1;
        }

        .hero-orb {
            position: absolute;
            top: -120px; left: -120px;
            width: 480px; height: 480px;
            background: var(--s-10);
            border-radius: 50%;
            filter: blur(100px);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-image-wrapper {
            position: relative;
            animation: float-hero 6s ease-in-out infinite;
        }

        .hero-img-floating {
            width: 100%;
            height: auto;
            border-radius: 40px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            object-fit: cover;
        }

        @keyframes float-hero {
            0% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0); }
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.18);
            backdrop-filter: blur(8px);
            border-radius: 50px;
            padding: .4rem 1.1rem;
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: .14em;
            color: var(--a1);
            text-transform: uppercase;
            margin-bottom: 1.2rem;
        }

        .hero-tag span {
            width: 6px; height: 6px;
            background: var(--a1);
            border-radius: 50%;
            display: inline-block;
            animation: pulse-dot 2s ease infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50%       { opacity: .5; transform: scale(1.4); }
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(3.2rem, 7vw, 6rem);
            font-weight: 300;
            line-height: 1.04;
            letter-spacing: -.03em;
            color: #fff;
            margin-bottom: 1.2rem;
        }

        .hero-title em {
            font-style: italic;
            color: var(--a1);
        }

        .hero-sub {
            font-size: 1.05rem;
            font-weight: 400;
            color: rgba(255,255,255,.75);
            border-left: 3px solid var(--s);
            padding-left: 1.2rem;
            max-width: 560px;
            line-height: 1.75;
            margin-bottom: 1.8rem;
        }

        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: .7rem;
            background: #fff;
            color: var(--p) !important;
            font-weight: 700;
            font-size: .9rem;
            letter-spacing: .05em;
            padding: .9rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all .4s cubic-bezier(.165,.84,.44,1);
            box-shadow: 0 16px 40px rgba(0,0,0,.12);
        }

        .btn-hero-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 24px 50px rgba(0,0,0,.18);
        }

        .btn-hero-ghost {
            display: inline-flex;
            align-items: center;
            gap: .7rem;
            background: transparent;
            color: rgba(255,255,255,.85) !important;
            font-weight: 600;
            font-size: .9rem;
            letter-spacing: .05em;
            padding: .9rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            border: 1.5px solid rgba(255,255,255,.35);
            transition: all .4s cubic-bezier(.165,.84,.44,1);
        }

        .btn-hero-ghost:hover {
            background: rgba(255,255,255,.10);
            border-color: rgba(255,255,255,.65);
            color: #fff !important;
            transform: translateY(-4px);
        }

        /* hero floating cards */
        .hero-stats {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            margin-top: 2.5rem;
        }

        .hero-stat-card {
            background: rgba(255,255,255,.10);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,.15);
            border-radius: 20px;
            padding: 1rem 1.6rem;
            min-width: 130px;
        }

        .hero-stat-card .num {
            font-family: var(--font-display);
            font-size: 2.4rem;
            font-weight: 700;
            color: #fff;
            line-height: 1;
        }

        .hero-stat-card .lbl {
            font-size: .74rem;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--a1-60);
            margin-top: .35rem;
            display: block;
        }

        /* ================================================
           SECTION PADDING SYSTEM
           ================================================ */
        .sec { padding: 5rem 0; }
        .sec-sm { padding: 3.5rem 0; }

        /* ================================================
           SOBRE NÓS — EDITORIAL SPLIT
           ================================================ */
        .about-sec { background: #fff; }

        .about-img-frame {
            position: relative;
            border-radius: 36px;
            overflow: hidden;
            box-shadow: 0 40px 80px var(--p-12);
        }

        .about-img-frame img {
            width: 100%;
            height: 460px;
            object-fit: cover;
            display: block;
            transition: transform .8s cubic-bezier(.165,.84,.44,1);
        }

        .about-img-frame:hover img { transform: scale(1.04); }

        .about-img-badge {
            position: absolute;
            bottom: 2rem; left: 2rem;
            background: var(--white-85);
            backdrop-filter: blur(16px);
            border: 1px solid var(--a2-30);
            border-radius: 20px;
            padding: 1.2rem 1.6rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .about-img-badge .icon {
            width: 44px; height: 44px;
            background: var(--a1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--p);
            font-size: 1.3rem;
        }

        .about-img-badge .text strong {
            display: block;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--p);
        }

        .about-img-badge .text span {
            font-size: .74rem;
            color: var(--s);
            font-weight: 600;
            letter-spacing: .06em;
        }

        .about-features {
            list-style: none;
            padding: 0;
            margin-top: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: .7rem;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1rem 1.4rem;
            background: #fff;
            border: 1px solid var(--a2-30);
            border-radius: 18px;
            transition: all .38s cubic-bezier(.165,.84,.44,1);
        }

        .about-feature-item:hover {
            transform: translateX(10px);
            border-color: var(--s-40);
            box-shadow: 0 12px 32px var(--p-08);
        }

        .about-feature-item .fi-icon {
            width: 44px; height: 44px;
            background: var(--a1-40);
            border-radius: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--p);
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .about-feature-item .fi-text {
            font-size: 1rem;
            font-weight: 600;
            color: #1a1a1a;
        }

        /* ================================================
           SERVIÇOS — BENTO GRID ASSIMÉTRICO
           ================================================ */
        .services-sec {
            background: #fafafa;
            position: relative;
            overflow: hidden;
        }

        .services-sec::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 700px; height: 700px;
            background: var(--a1-40);
            border-radius: 50%;
            filter: blur(160px);
            z-index: 0;
        }

        .services-sec::after {
            content: '';
            position: absolute;
            bottom: -200px; left: -200px;
            width: 600px; height: 600px;
            background: var(--s-10);
            border-radius: 50%;
            filter: blur(150px);
            z-index: 0;
        }

        /* BENTO GRID */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: auto;
            gap: 1.4rem;
            position: relative;
            z-index: 1;
        }

        /* Card base */
        .bento-card {
            background: var(--white-85);
            backdrop-filter: blur(28px) saturate(160%);
            -webkit-backdrop-filter: blur(28px) saturate(160%);
            border: 1px solid var(--a2-30);
            border-radius: 40px;
            padding: 2.4rem;
            display: flex;
            flex-direction: column;
            box-shadow: 0 20px 60px rgba(0,0,0,.025);
            transition: all .5s cubic-bezier(.165,.84,.44,1);
            position: relative;
            overflow: hidden;
        }

        .bento-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,.6) 0%, rgba(255,255,255,0) 60%);
            border-radius: inherit;
            pointer-events: none;
        }

        .bento-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 80px var(--p-12);
            border-color: var(--s-40);
            background: #fff;
        }

        /* Card layouts */
        .bento-main   { grid-column: span 7; }
        .bento-side   { grid-column: span 5; }
        .bento-accent { grid-column: span 4; }
        .bento-last   { grid-column: 1 / -1; }
        .bento-wide   { grid-column: span 8; }
        .bento-full   { grid-column: span 12; }

        @media (max-width: 991px) {
            .bento-main, .bento-side, .bento-accent, .bento-last, .bento-wide, .bento-full { grid-column: span 12; }
        }

        .bento-icon {
            width: 72px; height: 72px;
            background: var(--a1);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--p);
            margin-bottom: 1.2rem;
            transition: all .4s ease;
            flex-shrink: 0;
        }

        .bento-card:hover .bento-icon {
            background: var(--p);
            color: #fff;
            transform: rotate(-6deg) scale(1.08);
        }

        .bento-label {
            font-family: var(--font-body);
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--s);
            margin-bottom: .6rem;
        }

        .bento-title {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--p);
            line-height: 1.15;
            margin-bottom: .9rem;
        }

        .bento-desc {
            font-size: 1rem;
            line-height: 1.78;
            color: rgba(26,26,26,.72);
            flex-grow: 1;
            margin-bottom: 1.4rem;
        }

        .btn-saiba-mais {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            background: transparent;
            color: var(--p);
            font-weight: 700;
            font-size: .87rem;
            letter-spacing: .06em;
            padding: .72rem 1.8rem;
            border-radius: 50px;
            border: 2px solid var(--p);
            text-decoration: none;
            cursor: pointer;
            transition: all .38s cubic-bezier(.165,.84,.44,1);
            align-self: flex-start;
            font-family: var(--font-body);
        }

        .btn-saiba-mais:hover {
            background: var(--p);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 12px 28px var(--p-20);
        }

        /* Accent bento — card verde */
        .bento-card.is-accent {
            background: var(--p);
            border-color: var(--p);
        }

        .bento-card.is-accent::before {
            background: linear-gradient(135deg, var(--p-60) 0%, transparent 60%);
        }

        .bento-card.is-accent .bento-icon {
            background: rgba(255,255,255,.15);
            color: var(--a1);
        }

        .bento-card.is-accent:hover .bento-icon {
            background: rgba(255,255,255,.25);
            color: #fff;
            transform: rotate(-6deg) scale(1.08);
        }

        .bento-card.is-accent .bento-label { color: var(--a1-60); }
        .bento-card.is-accent .bento-title { color: #fff; }
        .bento-card.is-accent .bento-desc  { color: rgba(255,255,255,.75); }

        .bento-card.is-accent .btn-saiba-mais {
            border-color: rgba(255,255,255,.5);
            color: #fff;
        }

        .bento-card.is-accent .btn-saiba-mais:hover {
            background: rgba(255,255,255,.15);
            border-color: #fff;
        }

        /* mini stat card inside bento */
        .bento-mini-stats {
            display: flex;
            gap: 1rem;
            margin-top: 1.2rem;
        }

        .bento-mini-stat {
            flex: 1;
            background: var(--p-08);
            border-radius: 16px;
            padding: 1rem 1.2rem;
            text-align: center;
        }

        .bento-mini-stat .num {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--p);
            display: block;
            line-height: 1;
        }

        .bento-mini-stat .lbl {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--s);
            margin-top: .3rem;
            display: block;
        }

        /* ================================================
           CLIENTES
           ================================================ */
        .clients-sec { background: #fff; }

        .client-pill {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            padding: .9rem 2rem;
            background: #fff;
            border: 1px solid var(--a2-50);
            border-radius: 50px;
            font-size: .98rem;
            font-weight: 600;
            color: #1a1a1a;
            transition: all .38s cubic-bezier(.165,.84,.44,1);
            cursor: default;
        }

        .client-pill::before {
            content: '';
            width: 7px; height: 7px;
            background: var(--a2-50);
            border-radius: 50%;
            flex-shrink: 0;
            transition: background .38s ease;
        }

        .client-pill:hover {
            background: var(--p);
            border-color: var(--p);
            color: #fff;
            transform: translateY(-6px);
            box-shadow: 0 20px 40px var(--p-20);
        }

        .client-pill:hover::before { background: var(--a1); }

        .clients-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        /* ================================================
           CONTATO — SPLIT CARD LUXUOSO
           ================================================ */
        .contact-sec { background: #fafafa; }

        .contact-card {
            background: #fff;
            border-radius: 48px;
            border: 1px solid var(--a2-30);
            box-shadow: 0 40px 100px var(--p-08);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.3fr .9fr;
        }

        @media (max-width: 991px) {
            .contact-card { grid-template-columns: 1fr; }
        }

        .contact-form-side {
            padding: 4rem;
        }

        .contact-info-side {
            background: var(--p);
            padding: 4rem;
            position: relative;
            overflow: hidden;
        }

        .contact-info-side::before {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 400px; height: 400px;
            background: rgba(255,255,255,.04);
            border-radius: 50%;
            filter: blur(60px);
        }

        @media (max-width: 767px) {
            .contact-form-side, .contact-info-side { padding: 2.5rem 1.8rem; }
        }

        /* form fields */
        .field-wrap {
            margin-bottom: 1.6rem;
        }

        .field-label {
            display: block;
            font-size: .75rem;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--s);
            margin-bottom: .6rem;
        }

        .field-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 2px solid var(--a2-50);
            border-radius: 0;
            padding: .7rem 0;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 500;
            color: #1a1a1a;
            outline: none;
            transition: border-color .3s ease;
        }

        .field-input:focus { border-color: var(--p); }

        .field-input::placeholder { color: var(--a2); font-weight: 400; }

        textarea.field-input { resize: none; min-height: 120px; }

        .btn-submit {
            display: inline-flex;
            align-items: center;
            gap: .7rem;
            background: var(--p);
            color: #fff;
            font-family: var(--font-body);
            font-weight: 700;
            font-size: .9rem;
            letter-spacing: .06em;
            padding: .95rem 2.4rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all .4s cubic-bezier(.165,.84,.44,1);
            box-shadow: 0 12px 28px var(--p-20);
        }

        .btn-submit:hover:not(:disabled) {
            background: var(--p-85);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px var(--p-35);
        }

        .btn-submit:disabled { opacity: .7; cursor: not-allowed; }

        /* info items */
        .ci-item {
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            margin-bottom: 1.8rem;
            position: relative;
            z-index: 1;
        }

        .ci-icon {
            width: 48px; height: 48px;
            background: rgba(255,255,255,.12);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--a1);
            flex-shrink: 0;
        }

        .ci-eyebrow {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--s);
            display: block;
            margin-bottom: .35rem;
        }

        .ci-value {
            font-size: 1rem;
            font-weight: 500;
            color: rgba(255,255,255,.88);
            line-height: 1.6;
        }

        .ci-title {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .map-embed {
            border-radius: 24px;
            overflow: hidden;
            height: 170px;
            margin-top: 2rem;
            border: 2px solid rgba(255,255,255,.08);
            position: relative;
            z-index: 1;
        }

        .map-embed iframe {
            width: 100%; height: 100%;
            border: 0;
            filter: grayscale(20%) contrast(110%);
        }

        .form-feedback {
            border-radius: 16px;
            border: none;
            font-weight: 600;
            font-size: .92rem;
            padding: 1rem 1.4rem;
            margin-bottom: 1.8rem;
            display: none;
        }

        .form-feedback.show { display: flex; align-items: center; gap: .7rem; }
        .form-feedback.success { background: var(--a1-40); color: var(--p); }
        .form-feedback.error   { background: rgba(200,80,80,.1); color: #b84040; }

        /* ================================================
           FOOTER
           ================================================ */
        footer {
            background: var(--p);
            padding: 2.4rem 0;
            border-top: 1px solid rgba(255,255,255,.05);
        }

        .footer-copy {
            font-size: .85rem;
            color: rgba(255,255,255,.55);
            font-weight: 500;
        }

        .footer-link {
            font-size: .85rem;
            color: rgba(255,255,255,.55);
            font-weight: 500;
            cursor: default;
            text-decoration: none;
            transition: color .3s ease;
        }

        .footer-link:hover { color: var(--a1); }

        /* ================================================
           WHATSAPP FLOAT
           ================================================ */
        .wa-float {
            position: fixed;
            bottom: 36px; right: 36px;
            width: 62px; height: 62px;
            background: #25d366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.9rem;
            box-shadow: 0 14px 36px rgba(37,211,102,.38);
            z-index: 9999;
            text-decoration: none;
            transition: all .4s cubic-bezier(.165,.84,.44,1);
        }

        .wa-float:hover {
            background: #1da851;
            color: #fff;
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 22px 48px rgba(37,211,102,.55);
        }

        @media (max-width: 767px) {
            .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 1.65rem; }
        }

        /* ================================================
           MODAIS PREMIUM
           ================================================ */
        .modal-content {
            border-radius: 40px;
            border: none;
            box-shadow: 0 50px 120px rgba(0,0,0,.15);
            overflow: hidden;
        }

        .modal-header {
            background: #fafafa;
            border-bottom: 1px solid var(--a2-30);
            padding: 2rem 3rem 1.8rem;
        }

        .modal-title {
            font-family: var(--font-display);
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--p);
            display: flex;
            align-items: center;
            gap: .8rem;
        }

        .modal-body {
            padding: 2rem 3rem;
            background: #fff;
        }

        .modal-footer {
            background: #fff;
            border-top: none;
            padding: .5rem 3rem 2.5rem;
            justify-content: flex-end;
        }

        .modal-lead {
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--p);
            line-height: 1.75;
            margin-bottom: 1.5rem;
        }

        .modal-topic {
            margin-bottom: 1.2rem;
        }

        .modal-topic-title {
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--s);
            margin-bottom: .6rem;
            display: flex;
            align-items: center;
            gap: .5rem;
        }

        .modal-topic-title i { font-size: 1rem; }

        .modal-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .modal-list li {
            padding: .6rem 0;
            display: flex;
            align-items: flex-start;
            gap: .9rem;
            font-size: .97rem;
            font-weight: 600;
            color: #1a1a1a;
            border-bottom: 1px solid var(--a2-15);
        }

        .modal-list li:last-child { border-bottom: none; }

        .modal-list i {
            color: var(--p);
            font-size: 1.1rem;
            margin-top: 1px;
            flex-shrink: 0;
        }

        .btn-modal-cta {
            display: inline-flex;
            align-items: center;
            gap: .7rem;
            background: var(--p);
            color: #fff;
            font-family: var(--font-body);
            font-weight: 700;
            font-size: .9rem;
            letter-spacing: .06em;
            padding: .9rem 2.2rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: all .38s cubic-bezier(.165,.84,.44,1);
            box-shadow: 0 10px 28px var(--p-20);
        }

        .btn-modal-cta:hover {
            background: var(--p-85);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 18px 40px var(--p-35);
        }

        @media (max-width: 767px) {
            .modal-header, .modal-body, .modal-footer { padding: 1.8rem 1.5rem; }
        }

        /* AOS override timing */
        [data-aos] { pointer-events: none; }
        [data-aos].aos-animate { pointer-events: auto; }

        /* ================================================
           RESPONSIVIDADE — MELHORIAS MOBILE
           ================================================ */

        /* --- Tablets e abaixo (≤ 991px) --- */
        @media (max-width: 991px) {
            /* Seções: reduz espaçamento vertical */
            .sec { padding: 3.8rem 0; }

            /* Hero */
            .hero { padding-top: 96px; padding-bottom: 3rem; }
            .hero-stats { gap: .8rem; }
            .hero-stat-card { padding: .8rem 1.2rem; min-width: 100px; }

            /* Sobre */
            .about-img-frame img { height: 360px; }

            /* Bento cards */
            .bento-card { padding: 2rem; border-radius: 30px; }
            .bento-title { font-size: 1.7rem; }

            /* Contato */
            .contact-card { border-radius: 32px; }
        }

        /* --- Mobile (≤ 767px) --- */
        @media (max-width: 767px) {
            /* Seções */
            .sec { padding: 3rem 0; }

            /* Navbar — botão área cliente ocupa linha inteira */
            .btn-area-cliente {
                width: 100%;
                justify-content: center;
                margin-top: .6rem;
            }

            /* Hero — centraliza conteúdo e ajusta tipografia */
            .hero {
                padding-top: 88px;
                padding-bottom: 2.5rem;
                text-align: center;
            }
            .hero-title { font-size: clamp(2.6rem, 10vw, 3.6rem); }
            .hero-sub {
                margin: 0 auto 1.8rem;
                border-left: none;
                border-top: 3px solid var(--s);
                padding-left: 0;
                padding-top: 1.1rem;
                text-align: left;
            }
            .hero-stats { justify-content: center; }
            .hero-tag { margin-left: auto; margin-right: auto; }

            /* Sobre */
            .about-img-frame img { height: 260px; }
            .about-img-badge { left: 1rem; right: 1rem; width: auto; }
            /* Remove o translate no hover para evitar overflow lateral */
            .about-feature-item:hover { transform: none; box-shadow: 0 8px 20px var(--p-08); }

            /* Bento cards */
            .bento-card { padding: 1.5rem; border-radius: 24px; }
            .bento-icon { width: 56px; height: 56px; font-size: 1.6rem; border-radius: 16px; margin-bottom: .9rem; }
            .bento-title { font-size: 1.5rem; }
            .bento-mini-stats { flex-wrap: wrap; }

            /* Bento full-width com layout column no mobile */
            .bento-card.bento-full { flex-direction: column !important; }

            /* Clientes */
            .client-pill { padding: .7rem 1.4rem; font-size: .9rem; }
            .clients-grid { gap: .7rem; }

            /* Contato */
            .contact-card { border-radius: 20px; }

            /* Modais */
            .modal-content { border-radius: 24px; }
            .modal-title { font-size: 1.4rem; }
        }

        /* --- Smartphones pequenos (≤ 480px) --- */
        @media (max-width: 480px) {
            /* Seções */
            .sec { padding: 2.5rem 0; }

            /* Hero stats menores */
            .hero-stat-card { min-width: 80px; padding: .7rem 1rem; }
            .hero-stat-card .num { font-size: 1.9rem; }

            /* Botões hero viram full-width */
            .btn-hero-primary,
            .btn-hero-ghost {
                width: 100%;
                justify-content: center;
            }

            /* Bento mini-stats */
            .bento-mini-stats { gap: .6rem; }
            .bento-mini-stat .num { font-size: 1.5rem; }

            /* Badge do sobre */
            .about-img-badge { padding: .8rem 1rem; gap: .7rem; }
            .about-img-badge .icon { width: 36px; height: 36px; font-size: 1rem; border-radius: 10px; }

            /* Formulário */
            .btn-submit { width: 100%; justify-content: center; }

            /* Footer */
            footer .row { text-align: center !important; }
            footer .d-flex { justify-content: center !important; }
        }
