        :root {
            --primary: #014D87;
            --primary-dark: #012F52;
            --primary-light: #0287ED;
            --secondary: #3B82F6;
            --accent: #60A5FA;
            --light: #F8FAFC;
            --gray-light: #E2E8F0;
            --gray: #94A3B8;
            --gray-dark: #475569;
            --dark: #1E293B;
            --success: #10B981;
            --warning: #F59E0B;
            --danger: #EF4444;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --border-radius: 4px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            /* padding: 0 1.5rem; */
        }

        section {
            padding: 5rem 0;
        }

        .btn {
            display: inline-block;
            padding: 0.85rem 2rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: white;
        }

        .btn-secondary:hover {
            background-color: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .btn-whatsapp {
            background-color: #25D366;
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-whatsapp:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-lg {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
        }

        .text-center {
            text-align: center;
        }

        .text-center h2:after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Header */
        header {
            background-color: var(--light);
            /* background-color: white; */
            box-shadow: 0 2px 10px var(--primary);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 99999;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 1.5rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.1rem;
            /* max-height: 80; */
        }

        .logo img {
            color: var(--secondary);
            max-height: 2rem;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            font-weight: 500;
            color: var(--primary);
        }

        nav a:hover {
            color: var(--secondary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #4CC9F0;
            /* Cor de destaque que usamos nos cards */
            transition: width 0.3s ease;
        }

        .header-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            padding-top: 8rem;
            padding-bottom: 2rem;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #0A2463 0%, #1E3A8A 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="white" opacity="0.05"/></svg>');
            background-size: cover;
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-badges {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .hero-actions input {
            flex: 1;
            /* Faz o input ocupar todo o espaço restante */
            border: none;
            padding: 12px 15px;
            font-size: 16px;
            outline: none;
            /* background: transparent; */
        }

        .hero-actions select {
            border: none;
            border-left: 1px solid #eee;
            /* Linha sutil separando os dois */
            padding: 12px 10px;
            font-size: 14px;
            font-weight: bold;
            color: #555;
            background-color: #f9f9f9;
            cursor: pointer;
            outline: none;
            appearance: none;
            /* Remove a seta padrão em alguns browsers se desejar customizar */
        }

        /* Ajuste para o select não ficar muito colado */
        .hero-actions select:hover {
            background-color: #f0f0f0;
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: white;
        }

        .badge i {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 0.75rem;
            border-radius: 50%;
            font-size: 1.2rem;
        }

        /* Social Proof */
        .social-proof {
            background-color: white;
            padding: 2rem 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .social-proof-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .location {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--gray-dark);
            font-weight: 500;
        }

        .reviews {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .stars {
            color: var(--warning);
        }

        /* Problems Section */
        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 2fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .problem-card {
            background-color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }

        .problem-card:hover {
            transform: translateY(-10px);
        }

        .problem-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .list-card {
            background-color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }

        /* .list-card:hover {
            transform: translateY(-10px);
        } */

        .list-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        /* Services Section */
        .services {
            background-color: #F1F5F9;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background-color: white;
            padding: 2.5rem 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(59, 130, 246, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .service-icon i {
            font-size: 1.8rem;
            color: var(--secondary);
        }

        /* Plans Section */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .plan-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            position: relative;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .plan-header {
            padding: 2rem;
            background-color: var(--primary);
            color: white;
            text-align: center;
        }

        .plan-popular {
            background-color: var(--secondary);
        }

        .plan-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .plan-period {
            font-size: 1rem;
            opacity: 0.9;
        }

        .plan-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: var(--warning);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .plan-features {
            padding: 2rem;
        }

        .plan-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .plan-feature i {
            color: var(--success);
        }

        .plan-actions {
            padding: 0 2rem 2rem;
        }

        /* Differentiators Section */
        .differentiators {
            background-color: #F1F5F9;
        }

        .differentiators-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .differentiator-card {
            text-align: center;
            padding: 2rem;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .differentiator-card:hover {
            transform: translateY(-5px);
        }

        .differentiator-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 3rem auto 0;
        }

        .faq-item {
            background-color: white;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-bottom: 1.5rem;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .cta h2 {
            color: white;
        }

        .cta h2:after {
            background-color: var(--accent);
            left: 50%;
            transform: translateX(-50%);
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-links h4 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--gray);
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .copyright {
            color: var(--gray);
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: var(--transition);
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .header-container {
                flex-wrap: wrap;
            }

            nav {
                order: 3;
                width: 100%;
                margin-top: 1rem;
                display: none;
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
            }

            .mobile-menu-btn {
                display: block;
            }

            .header-actions {
                margin-left: auto;
            }

            .hero-actions {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 3rem 0;
            }

            .hero {
                padding-top: 7rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .social-proof-content {
                flex-direction: column;
                align-items: flex-start;
            }

            .plans-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Cookie Consent */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--dark);
            color: white;
            padding: 1.5rem;
            z-index: 1001;
            display: none;
        }

        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .cookie-actions {
            display: flex;
            gap: 1rem;
        }

        .cookie-consent.active {
            display: block;
        }

        /* Ajustes específicos para manter o layout do checkout limpo */
        .checkout-main {
            padding-top: 120px;
            background-color: var(--light);
            min-height: 80vh;
        }

        .checkout-grid {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 2rem;
        }

        .checkout-card {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: .5rem;
            font-weight: 600;
            color: var(--primary);
        }

        .form-control {
            width: 100%;
            padding: .8rem;
            border: 1px solid var(--gray-light);
            border-radius: var(--border-radius);
        }

        .summary-box {
            background: var(--primary);
            color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            position: sticky;
            top: 100px;
        }


        /* Spinner travatela */
        /* @import "compass/css3"; */

        .travatela {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: 9999;
            background-color: rgb(0, 0, 0, 0.5);
        }

        .spinner {
            position: fixed;
            width: 30px;
            height: 30px;
            /* display: inline; */
            z-index: 9999;

            top: 50%;
            left: 50%;
            @include transform(translate(-50%, -50%));

            .blob {
                position: absolute;
                top: 50%;
                left: 50%;
                @include transform(translate(-50%, -50%));
                border: 2px solid #fff;

                width: 10px;
                height: 10px;
                border-radius: 50%;

                &.top {
                    top: 0;
                    animation: blob-top 1s infinite ease-in;
                }

                &.bottom {
                    top: 100%;
                    animation: blob-bottom 1s infinite ease-in;
                }

                &.left {
                    left: 0;
                    animation: blob-left 1s infinite ease-in;
                }
            }

            .move-blob {
                background: #fff;
                top: 0;

                animation: blob-spinner-mover 1s infinite ease-in;
            }
        }

        @keyframes blob-bottom {

            25%,
            50%,
            75% {
                top: 50%;
                left: 100%;
            }

            100% {
                top: 0;
                left: 50%;
            }
        }

        @keyframes blob-left {
            25% {
                top: 50%;
                left: 0;
            }

            50%,
            100% {
                top: 100%;
                left: 50%;
            }
        }

        @keyframes blob-top {
            50% {
                top: 0;
                left: 50%;
            }

            75%,
            100% {
                top: 50%;
                left: 0;
            }
        }

        @keyframes blob-spinner-mover {

            0%,
            100% {
                top: 0;
                left: 50%;
            }

            25% {
                top: 50%;
                left: 100%;
            }

            50% {
                top: 100%;
                left: 50%;
            }

            75% {
                top: 50%;
                left: 0;
            }
        }


        <style>.tab-btn {
            flex: 1;
            padding: 12px;
            border: 1px solid #dee2e6;
            background: white;
            cursor: pointer;
            font-weight: bold;
            color: var(--gray-dark);
            transition: all 0.3s;
            border-radius: 8px;
        }

        .tab-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .copy-paste-box {
            display: flex;
            background: white;
            border: 1px solid #ced4da;
            border-radius: 6px;
            overflow: hidden;
            margin-top: 5px;
        }

        .copy-paste-box input {
            border: none;
            padding: 10px;
            flex: 1;
            font-family: monospace;
            font-size: 0.85rem;
            background: #fff;
            color: #333;
        }

        .btn-copy {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 15px;
            cursor: pointer;
            font-weight: bold;
            font-size: 0.75rem;
        }

        .btn-copy:hover {
            filter: brightness(1.1);
        }

        </style>