        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        i {
            color: var(--gold);
        }

        :root {
            --navy: #020617;
            /* Slate 950 - Obsidian */
            --navy2: #131e29;
            /* Slate 900 - Deep Surface */
            --gold: #c5a059;
            /* Champagne Gold - Sophisticated */
            --gold2: #e2c799;
            /* Soft Gold - Highlight */
            --white: #f8fafc;
            /* Near white for better contrast */
            --gray: #94a3b8;
            /* Slate 400 */
            --line: rgba(197, 160, 89, 0.12);
            --glass: rgba(2, 6, 23, 0.85);
            --glass-border: rgba(197, 160, 89, 0.2);
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--navy);
            color: var(--white);
            overflow-x: hidden
        }

        /* WORKFLOW SECTION */
        .workflow-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 4rem;
            position: relative;
        }

        .workflow-grid::before {
            content: '';
            position: absolute;
            top: 25px;
            left: 50px;
            right: 50px;
            height: 1px;
            background: var(--line);
            z-index: 1;
        }

        .workflow-item {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .workflow-num {
            width: 50px;
            height: 50px;
            background: var(--gold);
            color: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 0 auto 1.5rem;
            box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
        }

        .workflow-item h4 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .workflow-item p {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.6;
        }


        /* NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.2rem 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(10, 22, 40, 0.97);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--line)
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }

        .logo-svg {
            width: 40px;
            height: 40px;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            letter-spacing: .05em;
            line-height: 1;
        }

        .logo-name {
            color: var(--gold);
            display: block;
            font-weight: 700;
        }

        .logo-sub {
            color: var(--white);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-top: 0.2rem;
            display: block;
            opacity: 0.8;
        }

        /* REVEAL ANIMATION */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* BACK TO TOP */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--navy2);
            border: 1px solid var(--gold);
            color: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--gold);
            color: var(--navy);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem
        }

        nav a {
            color: var(--gray);
            text-decoration: none;
            font-size: .85rem;
            letter-spacing: .06em;
            text-transform: uppercase;
            transition: color .2s
        }

        nav a:hover {
            color: var(--gold)
        }

        .nav-cta {
            background: var(--gold);
            color: var(--navy) !important;
            padding: .5rem 1.2rem;
            border-radius: 2px;
            font-weight: 500
        }

        .nav-cta:hover {
            background: var(--gold2) !important
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 101;
        }

        .hamburger span {
            width: 26px;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropbtn {
            cursor: pointer;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--navy);
            min-width: 220px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
            border: 1px solid rgba(212,175,55,0.2);
            border-radius: 4px;
            padding: 8px 0;
            z-index: 1000;
        }

        .dropdown-content::before {
            content: "";
            position: absolute;
            top: -10px;
            left: 0;
            right: 0;
            height: 10px;
        }

        .dropdown-content li {
            display: block;
            margin: 0;
        }

        .dropdown-content a {
            display: block;
            padding: 10px 20px;
            color: rgba(255,255,255,0.8);
            font-size: .8rem;
            letter-spacing: .04em;
            text-transform: none;
            white-space: nowrap;
            transition: background .2s, color .2s;
        }

        .dropdown-content a:hover {
            background: rgba(212,175,55,0.1);
            color: var(--gold);
        }

        .dropdown:hover .dropdown-content,
        .dropdown.open .dropdown-content {
            display: block;
        }

        .dropdown:hover .dropbtn,
        .dropdown.open .dropbtn {
            color: var(--gold);
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 5% 4rem;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at 70% 30%, rgba(197, 160, 89, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 70%, rgba(15, 23, 42, 1) 0%, var(--navy) 100%);
        }

        .hero-bg-blobs {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
        }

        .blob {
            position: absolute;
            background: var(--gold);
            filter: blur(120px);
            opacity: 0.05;
            border-radius: 50%;
            animation: blobFloat 20s infinite alternate;
        }

        .blob-1 {
            width: 400px;
            height: 400px;
            top: -100px;
            right: -50px;
            animation-delay: 0s;
        }

        .blob-2 {
            width: 300px;
            height: 300px;
            bottom: 10%;
            left: -50px;
            animation-delay: -5s;
            opacity: 0.03;
        }

        @keyframes blobFloat {
            from {
                transform: translate(0, 0) scale(1);
            }

            to {
                transform: translate(30px, 40px) scale(1.1);
            }
        }


        .hero-content {
            max-width: 720px;
            position: relative;
            z-index: 10;
            animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
            overflow: hidden;
        }

        .hero-content::after {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right,
                    transparent,
                    rgba(255, 255, 255, 0.1),
                    transparent);
            transform: skewX(-25deg);
            animation: shine 6s infinite;
        }

        @keyframes shine {
            0% {
                left: -150%;
            }

            20% {
                left: 150%;
            }

            100% {
                left: 150%;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .eyebrow {
            font-size: .8rem;
            letter-spacing: .3em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 500;
        }

        .eyebrow::before {
            content: '';
            display: block;
            width: 32px;
            height: 1px;
            background: var(--gold);
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.6rem);
            line-height: 1.1;
            margin-bottom: 1.8rem;
            color: var(--white);
            font-weight: 900;
        }

        h1 em {
            color: var(--gold);
            font-style: normal;
            position: relative;
            display: inline-block;
        }

        h1 em::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(212, 175, 55, 0.2);
            z-index: -1;
        }

        .hero-bullets {
            list-style: none;
            margin-bottom: 3rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .hero-bullets li {
            font-size: 1.1rem;
            color: var(--gray);
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
            line-height: 1.5;
        }

        .hero-bullets li::before {
            content: '';
            display: none;
        }

        .hero-bullets li i {
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }

        .cta-group {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--navy);
            padding: 1.1rem 2.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: .95rem;
            text-decoration: none;
            letter-spacing: .02em;
            transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.3);
        }

        .btn-primary:hover {
            background: var(--white);
            color: var(--navy);
            transform: translateY(-3px);
            box-shadow: 0 20px 25px -5px rgba(212, 175, 55, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            color: var(--white);
            padding: 1.1rem 2.5rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: .95rem;
            text-decoration: none;
            transition: all .3s ease;
            display: inline-block;
            backdrop-filter: blur(4px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--gold);
            transform: translateY(-3px);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4.5rem;
            padding-top: 3.5rem;
            border-top: 1px solid var(--line);
        }

        .stat-item {
            text-align: left;
        }

        .stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--gold);
            font-weight: 700;
            display: block;
            margin-bottom: .2rem;
        }

        .stat-label {
            font-size: .75rem;
            color: var(--gray);
            letter-spacing: .1em;
            text-transform: uppercase;
            font-weight: 500;
        }

        .hero-visual {
            position: absolute;
            right: -5%;
            top: 50%;
            transform: translateY(-50%);
            width: 55%;
            height: 90%;
            z-index: 2;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image-wrapper img {
            width: 90%;
            height: auto;
            max-height: 80vh;
            object-fit: cover;
            border-radius: 40px 0 0 40px;
            box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(212, 175, 55, 0.1);
            mask-image: linear-gradient(to right, black 80%, transparent 100%),
                linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
            mask-composite: intersect;
            animation: imageReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes imageReveal {
            from {
                opacity: 0;
                transform: translateX(50px) scale(1.05);
            }

            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        .tech-circle {
            position: absolute;
            border: 1px solid var(--gold);
            border-radius: 50%;
            opacity: 0.15;
            animation: rotate 60s linear infinite;
            z-index: -1;
        }

        .circle-1 {
            width: 500px;
            height: 500px;
            border-style: dashed;
        }

        .circle-2 {
            width: 400px;
            height: 400px;
            border-width: 2px;
            opacity: 0.1;
            animation-direction: reverse;
        }

        .circle-3 {
            width: 300px;
            height: 300px;
            border-style: dotted;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* SECTION BASE */
        section {
            padding: 6rem 5%
        }

        .section-tag {
            font-size: .7rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: .6rem
        }

        .section-tag::before {
            content: '';
            display: block;
            width: 24px;
            height: 1px;
            background: var(--gold)
        }

        h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            line-height: 1.2;
            margin-bottom: 1.5rem
        }

        .text-gold {
            color: var(--gold)
        }

        .divider {
            height: 1px;
            background: var(--line);
            margin: 0 5%
        }

        /* PROBLEMA */
        .problema {
            background: var(--navy2);
            position: relative;
        }

        .problema-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            margin-top: 4rem;
        }

        .problema-text p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 2rem;
            max-width: 800px;
        }

        .problema-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .problema-intro {
            margin-bottom: 4rem;
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--white);
            opacity: 0.9;
        }

        .pain-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .pain-list li {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--line);
            padding: 2.5rem;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            transition: all 0.3s ease;
        }

        .pain-list li h4 {
            color: var(--gold);
            font-size: 1.2rem;
            font-family: 'Playfair Display', serif;
        }

        .pain-list li p {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.6;
        }

        /* SERVIÇOS */
        .services-intro {
            max-width: 600px;
            margin-bottom: 4rem;
        }

        .services-intro p {
            color: var(--gray);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-top: 1.2rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--line);
            padding: 2.5rem;
            border-radius: 24px;
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover {
            border-color: var(--gold);
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.04);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

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

        .service-icon {
            width: 42px;
            height: 42px;
            border: 1px solid var(--line);
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem
        }

        .service-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5
        }

        .service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            margin-bottom: .7rem;
            color: var(--white)
        }

        .service-card p {
            font-size: .88rem;
            color: var(--gray);
            line-height: 1.6
        }

        /* CREDIBILIDADE */
        .cred {
            background: linear-gradient(to bottom, var(--navy), var(--navy2));
            position: relative;
        }

        .cred-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            margin-top: 4rem;
        }

        .cred-items {
            display: flex;
            flex-direction: column;
            gap: 1.5rem
        }

        .cred-item {
            display: flex;
            gap: 1.2rem;
            align-items: flex-start
        }

        .cred-num {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--gold);
            line-height: 1;
            flex-shrink: 0;
            min-width: 60px
        }

        .cred-detail h4 {
            font-size: .9rem;
            font-weight: 500;
            margin-bottom: .3rem;
            color: var(--white)
        }

        .cred-detail p {
            font-size: .83rem;
            color: var(--gray);
            line-height: 1.5
        }

        .badges {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem;
            margin-top: 2rem
        }

        .badge {
            font-size: .7rem;
            letter-spacing: .08em;
            border: 1px solid var(--line);
            padding: .35rem .7rem;
            color: var(--gray)
        }

        .cred-quote {
            padding: 4rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--line);
            border-radius: 24px;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .cred-quote::before {
            content: '“';
            font-family: 'Playfair Display', serif;
            font-size: 8rem;
            color: var(--gold);
            opacity: 0.1;
            position: absolute;
            top: -1rem;
            left: 2rem;
            line-height: 1;
        }

        .cred-quote p {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--white);
            margin-bottom: 1.2rem;
            padding-top: 1.5rem
        }

        .cred-author {
            font-size: .8rem;
            color: var(--gray);
            letter-spacing: .05em
        }

        .cred-author strong {
            color: var(--gold);
            display: block;
            margin-bottom: .2rem
        }

        /* O PERITO */
        .perito {
            background: var(--navy);
            position: relative;
        }

        .perito-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .perito-text h3 {
            color: var(--gold);
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-family: 'Playfair Display', serif;
        }

        .perito-text p {
            color: var(--gray);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .perito-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--line);
            padding: 3rem 2rem;
            border-radius: 24px;
            text-align: center;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .perito-photo {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 3px solid var(--gold);
            padding: 5px;
            background: var(--navy);
        }

        .perito-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold);
        }

        .perito-card h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .perito-card .title {
            color: var(--gold);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: .15em;
            margin-bottom: 2rem;
            display: block;
        }

        .perito-certs {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 2rem;
            color: var(--gray);
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* DEPOIMENTOS */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 4rem;
        }

        .tcard {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--line);
            padding: 2rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .tcard:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.03);
        }

        .tcard p {
            font-size: .9rem;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-style: italic
        }

        .tauthor {
            display: flex;
            align-items: center;
            gap: .8rem
        }

        .avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(201, 168, 76, 0.15);
            border: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .8rem;
            color: var(--gold);
            font-weight: 500;
            flex-shrink: 0
        }

        .tname {
            font-size: .85rem;
            font-weight: 500;
            color: var(--white)
        }

        .trole {
            font-size: .75rem;
            color: var(--gray)
        }

        /* DIFERENCIAIS / PILARES */
        .pilares-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .pilar-card {
            background: rgba(255, 255, 255, 0.02);
            padding: 3.5rem 2.5rem;
            border-radius: 24px;
            border: 1px solid var(--line);
            transition: all 0.4s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .pilar-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.04);
            border-color: var(--gold);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .pilar-icon {
            width: 60px;
            height: 60px;
            background: rgba(197, 160, 89, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            color: var(--gold);
            font-size: 1.6rem;
            transition: all 0.3s ease;
        }

        .pilar-card:hover .pilar-icon {
            background: var(--gold);
            color: var(--navy);
            transform: scale(1.1);
        }

        .pilar-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            color: var(--white);
        }

        .pilar-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* CTA FINAL */
        .cta-section {
            background: var(--navy2);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(197, 160, 89, 0.05), transparent 70%);
            pointer-events: none;
        }

        .cta-section h2 {
            margin-bottom: 1rem
        }

        .cta-section>p {
            color: var(--gray);
            max-width: 540px;
            margin: 0 auto 2.5rem;
            line-height: 1.7
        }

        /* CONTATO */
        .contact-grid {
            max-width: 800px;
            margin: 4rem auto 0;
            text-align: center;
        }

        .contact-info-full {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
        }

        .main-cta-button {
            background: var(--gold);
            color: var(--navy);
            padding: 1.5rem 4rem;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        }

        .main-cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
        }

        .secondary-contacts {
            display: flex;
            gap: 3rem;
            margin-top: 1rem;
        }

        .secondary-contact {
            color: var(--gray);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .secondary-contact:hover {
            color: var(--gold);
        }

        .secondary-contact svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .contact-form {
            max-width: 500px;
            margin: 2rem auto 0;
            padding: 2rem;
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--line);
            border-radius: 16px;
            text-align: left;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-input {
            width: 100%;
            padding: 0.85rem 1rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--line);
            border-radius: 8px;
            color: var(--white);
            font-size: 0.9rem;
            font-family: inherit;
            transition: border-color 0.3s;
            box-sizing: border-box;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--gold);
        }

        .form-input::placeholder {
            color: rgba(255,255,255,0.3);
        }

        .form-input option {
            background: var(--navy);
            color: var(--white);
        }

        .form-submit {
            width: 100%;
            padding: 1rem;
            background: var(--gold);
            color: var(--navy);
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            font-family: inherit;
        }

        .form-submit:hover {
            background: var(--gold2);
        }

        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .form-msg {
            margin-top: 0.75rem;
            font-size: 0.85rem;
            text-align: center;
            color: var(--gray);
        }

        .form-msg.success {
            color: #4ade80;
        }

        .form-msg.error {
            color: #f87171;
        }

        .legal-warning {
            margin-top: 3rem;
            padding: 2rem;
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 16px;
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.6;
            max-width: 700px;
            text-align: left;
        }

        .legal-warning-title {
            color: var(--gold);
            display: block;
            margin-bottom: 0.5rem;
            font-size: 1rem;
            font-weight: 700;
        }

        /* WHATSAPP FLOATING */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: pulse-whatsapp 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #128c7e;
        }

        @keyframes pulse-whatsapp {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .faq {
            background: var(--navy2);
        }

        /* Lead Capture Modal */
        .faq-grid {
            max-width: 800px;
            margin: 4rem auto 0;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--gold);
        }

        .faq-question {
            color: var(--gold);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            user-select: none;
        }

        .faq-question::before {
            content: '+';
            width: 24px;
            height: 24px;
            background: var(--gold);
            color: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 1rem;
            flex-shrink: 0;
            transition: transform 0.3s;
        }

        .faq-item.open .faq-question::before {
            content: '−';
            transform: rotate(180deg);
        }

        .faq-answer {
            color: var(--gray);
            line-height: 1.7;
            font-size: 0.95rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease, margin 0.3s ease;
            padding: 0 0 0 3rem;
            margin: 0;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0.75rem 0 0 3rem;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 1.5rem 2rem;
            transition: all 0.3s ease;
        }

        .faq-question::before {
            content: '?';
            width: 24px;
            height: 24px;
            background: var(--gold);
            color: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 0.8rem;
        }

        .faq-answer {
            color: var(--gray);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* FOOTER */
        footer {
            background: #040810;
            padding: 5rem 5% 3rem;
            border-top: 1px solid var(--line);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
            display: block;
        }

        .footer-desc {
            color: var(--gray);
            font-size: .95rem;
            line-height: 1.7;
            max-width: 320px;
        }

        .footer-heading {
            color: var(--white);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: .1em;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            font-size: .95rem;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }

        .footer-bottom {
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copy {
            color: rgba(148, 163, 184, 0.5);
            font-size: .85rem;
        }

        /* SCROLL REVEAL */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* RESPONSIVE */
        @media(max-width:1200px) {

            .services-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:900px) {
            .hero-visual {
                display: none
            }

            .problema-grid,
            .cred-layout,
            .contact-grid {
                grid-template-columns: 1fr
            }
        }

        @media(max-width:768px) {
            .hamburger {
                display: flex;
            }

            nav ul {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                flex-direction: column;
                background: rgba(2, 6, 23, 0.98);
                backdrop-filter: blur(12px);
                padding: 6rem 2rem 2rem;
                gap: 1.5rem;
                transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                display: flex;
                z-index: 100;
                border-left: 1px solid var(--line);
            }

            nav ul.open {
                right: 0;
            }

            .dropdown-content {
                position: static;
                transform: none;
                box-shadow: none;
                border: none;
                margin-top: 0;
                padding-left: 1rem;
                background: transparent;
            }

            .dropdown-content a {
                font-size: .75rem;
                padding: 8px 20px;
            }

            .hero-stats {
                grid-template-columns: 1fr 1fr
            }

            section {
                padding: 4rem 5%
            }

            .services-grid,
            .workflow-grid,
            .pilares-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .arsenal>div {
                grid-template-columns: 1fr !important;
                gap: 3rem !important;
            }

            .arsenal ul {
                grid-template-columns: 1fr !important;
            }
        }

        @media(max-width:480px) {
            .back-to-top {
                bottom: 110px;
                right: 15px;
                width: 44px;
                height: 44px;
                font-size: 14px;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 15px;
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .hero-stats {
                grid-template-columns: 1fr
            }

            .footer-links {
                display: none
            }

            footer {
                flex-direction: column;
                text-align: center
            }
        }
        .perito-certs a,
        .badges a {
            border-bottom: 1px dotted rgba(212, 175, 55, 0.35);
            transition: border-bottom-color 0.2s, color 0.2s;
        }
        .perito-certs a:hover,
        .badges a:hover {
            border-bottom-color: var(--gold);
            color: var(--gold) !important;
        }

        /* AUTHORITY BAR */
        .authority-bar {
            padding: 2rem 5%;
            background: var(--navy2);
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.25rem;
        }

        .authority-bar__label {
            font-size: .65rem;
            letter-spacing: .25em;
            text-transform: uppercase;
            color: var(--gray);
            margin: 0;
        }

        .authority-bar__logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .authority-bar__logo {
            display: block;
            transition: filter 0.35s ease, opacity 0.35s ease;
            filter: grayscale(100%);
            opacity: 0.65;
        }

        .authority-bar__logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        .authority-bar__logo img {
            height: 28px;
            width: auto;
            display: block;
        }

        .authority-bar__logo img[src*="logo-livecoins"] {
            height: 32px;
        }

        .authority-bar__logo--livecoins {
            filter: none;
        }

        .authority-bar__logo--livecoins img {
            filter: grayscale(100%) brightness(0) invert(1);
        }

        .authority-bar__logo--livecoins:hover img {
            filter: grayscale(0%) brightness(1) invert(0);
        }

        /* NA MÍDIA */
        .midia {
            padding: 6rem 5%;
        }

        .midia-intro {
            color: var(--gray);
            font-size: 1.05rem;
            max-width: 700px;
            margin-top: 1rem;
        }

        .midia-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            margin-top: 3rem;
            align-items: start;
        }

        .midia-col-left,
        .midia-col-right {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .media-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--line);
            border-radius: 20px;
            overflow: hidden;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .media-card:hover {
            border-color: var(--glass-border);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .media-card__cover {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            display: block;
        }

        .media-card__body {
            padding: 1.75rem 2rem 2rem;
        }

        .media-card__source {
            font-size: .65rem;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: .75rem;
        }

        .media-card__title {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            line-height: 1.4;
            color: var(--white);
            margin-bottom: .75rem;
        }

        .media-card__snippet {
            font-size: .9rem;
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .media-card__cta {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .75rem 1.5rem;
            background: var(--gold);
            color: var(--navy);
            font-weight: 600;
            font-size: .85rem;
            border-radius: 8px;
            text-decoration: none;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .media-card__cta:hover {
            background: var(--gold2);
            transform: translateY(-1px);
        }

        .media-quote {
            padding: 2.5rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--line);
            border-left: 3px solid var(--gold);
            border-radius: 16px;
            position: relative;
        }

        .media-quote p {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            line-height: 1.65;
            color: var(--white);
            margin-bottom: 1.25rem;
            font-style: italic;
        }

        .media-quote__attr {
            font-size: .8rem;
            color: var(--gray);
            letter-spacing: .05em;
            margin-bottom: 1rem;
        }

        .media-quote__attr strong {
            color: var(--gold);
            display: block;
            margin-bottom: .25rem;
        }

        .media-quote__link {
            font-size: .85rem;
            color: var(--gold);
            text-decoration: none;
            border-bottom: 1px dotted rgba(197, 160, 89, 0.4);
            transition: border-color 0.2s, color 0.2s;
        }

        .media-quote__link:hover {
            color: var(--gold2);
            border-bottom-color: var(--gold2);
        }

        .book-card {
            display: flex;
            gap: 1.5rem;
            padding: 1.75rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--line);
            border-radius: 16px;
            align-items: flex-start;
            transition: border-color 0.3s ease;
        }

        .book-card:hover {
            border-color: var(--glass-border);
        }

        .book-card__cover {
            width: 90px;
            flex-shrink: 0;
            border-radius: 6px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
            object-fit: cover;
        }

        .book-card__body {
            flex: 1;
            min-width: 0;
        }

        .book-card__label {
            font-size: .65rem;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: .5rem;
        }

        .book-card__title {
            font-family: 'Playfair Display', serif;
            font-size: .95rem;
            line-height: 1.4;
            color: var(--white);
            margin-bottom: .35rem;
        }

        .book-card__subtitle {
            font-size: .82rem;
            color: var(--gray);
            line-height: 1.45;
            margin-bottom: .75rem;
        }

        .book-card__snippet {
            font-size: .85rem;
            color: var(--gray);
            line-height: 1.5;
            margin-bottom: .5rem;
        }

        .book-card__meta {
            font-size: .75rem;
            color: var(--gray);
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .book-card__cta {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            font-size: .85rem;
            font-weight: 600;
            color: var(--gold);
            text-decoration: none;
            border-bottom: 1px dotted rgba(197, 160, 89, 0.4);
            transition: color 0.2s, border-color 0.2s;
        }

        .book-card__cta:hover {
            color: var(--gold2);
            border-bottom-color: var(--gold2);
        }

        .book-card--featured {
            padding: 2rem;
            height: 100%;
        }

        .book-card--featured .book-card__cover {
            width: 160px;
        }

        .book-card--featured .book-card__title {
            font-size: 1.25rem;
        }

        .book-card--featured .book-card__snippet {
            font-size: .9rem;
        }

        .book-card__cta--primary {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .75rem 1.5rem;
            background: var(--gold);
            color: var(--navy);
            font-weight: 600;
            font-size: .85rem;
            border-radius: 8px;
            border-bottom: none;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .book-card__cta--primary:hover {
            background: var(--gold2);
            color: var(--navy);
            transform: translateY(-1px);
            border-bottom-color: transparent;
        }

        .book-card__cta--primary i {
            font-size: .75rem;
        }

        .media-card--compact .media-card__cover {
            aspect-ratio: 21 / 9;
            max-height: 140px;
        }

        .media-card--compact .media-card__body {
            padding: 1.25rem 1.5rem 1.5rem;
        }

        .media-card--compact .media-card__title {
            font-size: 1rem;
        }

        .media-card--compact .media-card__snippet {
            font-size: .85rem;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .authority-bar__logos {
                gap: 2rem;
            }

            .midia-grid {
                grid-template-columns: 1fr;
            }

            .book-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .book-card__cover {
                width: 120px;
            }

            .book-card--featured .book-card__cover {
                width: 140px;
            }
        }

        /* LEGAL PAGES */
        .legal-page {
            padding: 8rem 5% 4rem;
            max-width: 820px;
            margin: 0 auto;
        }

        .legal-page h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 2.75rem);
            margin-bottom: .75rem;
        }

        .legal-page__updated {
            color: var(--gray);
            font-size: .9rem;
            margin-bottom: 2.5rem;
        }

        .legal-page__content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            color: var(--white);
            margin: 2rem 0 1rem;
        }

        .legal-page__content p,
        .legal-page__content li {
            color: var(--gray);
            line-height: 1.75;
            margin-bottom: 1rem;
        }

        .legal-page__content ul {
            padding-left: 1.25rem;
            margin-bottom: 1rem;
        }

        .legal-page__content a {
            color: var(--gold);
        }

        @media (max-width: 768px) {
            nav.legal-nav ul {
                position: static;
                right: auto;
                flex-direction: row;
                flex-wrap: wrap;
                width: auto;
                height: auto;
                padding: 0;
                background: transparent;
                border: none;
                gap: 0.75rem 1.25rem;
                box-shadow: none;
            }

            nav.legal-nav .hamburger {
                display: none;
            }
        }
