        /* Cores e Configurações Globais */
        :root {
            --primary-green: #fdfdfd;
            --primary-greeen: #1A9E94;
            --dark-green: #1A9E94;
            --light-green: #e8f8f5;
            --forest-green: #1A9E94;
            --background-gray: #fdfdfd;
            --text-dark: #2c3e50;
            --text-light: #ffffff;
            --error-red: #be9156;
        }

        /* ================================================= */
        /*                 MODO ESCURO                       */
        /* ================================================= */

        body.dark {
            background-color: #121212;
            color: #ffffff;
        }

        /* Header */

        body.dark header {
            background-color: #0d0d0d;
        }

        /* Textos */

        body.dark .hero {
            color: #1A9E94;
        }

        body.dark .hero p {
            color: #dddddd;
        }

        body.dark .container {
            color: #ffffff;
        }

        /* Texto da explicação */

        body.dark .container>p {
            color: #bdbdbd !important;
        }

        /* Cards */

        body.dark .card {
            background-color: #1e1e1e;
            border-color: #333333;
        }

        body.dark .card p {
            color: #cccccc;
        }

        body.dark .card h3 {
            color: #1A9E94;
        }

        /* Linha */

        body.dark hr {
            border-top-color: #333333 !important;
        }

        /* Antes e Depois */

        body.dark .comparison-box {
            background-color: #1e1e1e;
            border-color: #333333;
        }

        body.dark .comparison-title p {
            color: #bdbdbd;
        }

        body.dark .box-desc {
            color: #bdbdbd;
        }

        body.dark .comparison-box:hover .box-desc {
            color: #ffffff;
        }

        body.dark .comparison-arrow {
            color: #555555;
        }

        /* Área das imagens */

        body.dark .image-wrapper {
            background-color: #181818;
        }

        /* Como funciona */

        body.dark .titulo-secao {
            color: #1A9E94;
        }

        body.dark .titulo-secao p {
            color: #bdbdbd;
        }

        body.dark .card-funcionamento {
            background-color: #1e1e1e;
            border-color: #333333;
        }

        body.dark .card-funcionamento h3 {
            color: #ffffff;
        }

        body.dark .card-funcionamento p {
            color: #bdbdbd;
        }

        body.dark .numero {
            color: #1A9E94;
        }

        /* CTA */

        body.dark .cta-final {
            background: linear-gradient(135deg,
                    #126e67,
                    #1A9E94);
        }

        /* Footer */

        body.dark footer {
            background-color: #0d0d0d;
        }

        html {
            scroll-behavior: smooth;
        }

        @font-face {
            font-family: 'HelveticaNowText-Bold';
            src: url('./fontes/helveticanowtext-bold.ttf') format('truetype');
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            letter-spacing: 0.5px;
        }

        body {
            background-color: var(--background-gray);
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* Cabeçalho */
        header {
            background-color: var(--forest-green);
            color: var(--text-light);
            padding: 20px 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 4px solid var(--primary-green);
        }

        /* HEADER - TEMA ESCURO */
        body.dark header {
            border-bottom: 4px solid #1A9E94;
        }

        header h1 {
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        header h1 span {
            color: var(--primary-green);
        }

        #theme-toggle {
            width: 50px;
            height: 50px;

            border: none;
            background: none;

            cursor: pointer;

            display: flex;
            justify-content: center;
            align-items: center;
        }

        #theme-toggle img {
            width: 28px;
            height: 28px;
            transition: .3s;
        }

        .logo {
            font-size: 30px;
            letter-spacing: -1px;
            color: #fffffd;
            font-weight: bold;
        }

        .menu-links {
            margin-left: auto;
            font-weight: bold;
        }

        .menu-links a {
            color: #fffffe;
            margin-left: 20px;
            text-decoration: none;
        }

        .oop {
            margin-left: 20px;
        }

        /* Hero Section */
        /* Hero Section */
        .hero {
            /* Substitua 'seu-banner.jpg' pelo caminho real da sua imagem */
            background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(222, 231, 231, 0.8));
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: #1A9E94;
            text-align: center;
            padding: 120px 20px;
            /* Aumentei um pouco o espaço para dar mais destaque ao banner */
        }

        body.dark .hero {
            background: linear-gradient(to bottom,
                    rgba(18, 18, 18, 1) 0%,
                    #051314 100%);
        }

        .imagemomg2 {
            width: 5%;
            /* Tenta usar a largura total */
            max-height: 800px;
            /* Mantém a altura limite */
            object-fit: 100%;

            margin-right: 10px;
        }

        .imagemomg {
            width: 100%;
            /* Tenta usar a largura total */
            max-height: 800px;
            /* Mantém a altura limite */
            object-fit: 100%;
            /* <-- MUDAMOS AQUI: Mostra a imagem inteira, sem cortar */
            background-color: var(--forest-green);
        }

        .hero h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            letter-spacing: -2px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px auto;
            opacity: 0.9;
        }

        .texto-flutuante {
            font-size: 1.9rem;
            font-family: sans-serif;
            display: inline-block;
            /* Necessário para o transform funcionar corretamente */
            animation: flutuar 3s ease-in-out infinite alternate;
        }

        .gradiente-animado {
            font-size: 3rem;
            font-family: 'Chunko Bold', sans-serif;
            font-weight: bold;
            display: inline-block;
            align-items: center;
            letter-spacing: -2px;
            margin-top: 20px;
            margin-left: 204px;
            margin-bottom: 30px;
            color: #fdfdfd;

            background: linear-gradient(90deg,
                    rgba(26, 158, 148, .90),
                    rgba(26, 158, 148, .90));

            transform: rotate(-0.5deg);

            filter: blur(0.5px);
        }

        body.dark .gradiente-animado {
            color: #121212;
        }

        /* O segredo do movimento: deslocar a posição do fundo do gradiente */
        @keyframes moverGradiente {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes flutuar {
            0% {
                transform: translateY(0px);
            }

            100% {
                transform: translateY(-5px);
            }
        }

        .btn {
            display: inline-block;
            background-color: var(--primary-green);
            color: var(--text-light);
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .btn:hover {
            background-color: var(--dark-green);
        }

        /* Seção de Recursos */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border: 2px solid var(--primary-green);
            transition: transform 0.3s ease;
        }

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

        .card h3 {
            color: var(--forest-green);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* ============================= */
        /* COMPARAÇÃO - ANTES E DEPOIS */
        /* ============================= */

        .comparison-section {
            margin: 60px 0;
            padding: 40px 20px;
            border-radius: 12px;
        }

        .comparison-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .comparison-title h2 {
            color: var(--forest-green);
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .comparison-title p {
            color: #666;
            max-width: 750px;
            margin: 0 auto;
        }

        .comparison-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        /* ============================= */
        /* CARD */
        /* ============================= */

        .comparison-box {
            flex: 1;
            background: var(--background-gray);
            padding: 25px;
            border-radius: 12px;

            border: 2px solid #d8d8d8;
            border-bottom: 6px solid #d8d8d8;

            text-align: center;

            cursor: pointer;

            transition:
                transform .35s ease,
                box-shadow .35s ease,
                border-color .35s ease,
                border-bottom-width .35s ease;
        }

        .comparison-box:hover {

            transform: translateY(-10px);

            border-color: #14857d;
            border-bottom-width: 8px;

            box-shadow:
                0 20px 35px rgba(26, 158, 148, .12),
                0 0 25px rgba(26, 158, 148, .15);
        }

        /* ============================= */
        /* BADGES */
        /* ============================= */

        .badge {
            display: inline-block;
            padding: 6px 16px;
            font-weight: bold;
            font-size: .9rem;
            margin-bottom: 20px;

            transition: transform .3s ease;
        }

        .badge-before {
            background: #fdf6ea;
            color: var(--error-red);
        }

        .badge-after {
            background: var(--light-green);
            color: var(--dark-green);
        }

        /* ============================= */
        /* BADGES - TEMA ESCURO */
        /* ============================= */

        body.dark .badge-before {
            background: #2a2420;
            color: #d89b55;
        }

        body.dark .badge-after {
            background: #183b3b;
            color: #36b8ad;
        }

        /* ============================= */
        /* IMAGEM */
        /* ============================= */

        .image-wrapper {
            width: 100%;
            overflow: hidden;
            border-radius: 6px;
            background: white;

            box-shadow: 0 4px 12px rgba(26, 158, 148, .2);

            margin-bottom: 20px;

            transition: transform .35s ease;
        }

        .comparison-img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        /* ============================= */
        /* DESCRIÇÃO */
        /* ============================= */

        .box-desc {
            font-size: .9rem;
            color: #555;
            line-height: 1.5;
            padding: 0 10px;
            letter-spacing: -.4px;

            transition: color .3s ease;
        }

        .comparison-box:hover .box-desc {
            color: #222;
        }

        /* ============================= */
        /* SETA */
        /* ============================= */

        .comparison-arrow {
            font-size: 2.5rem;
            color: #d8d8d8;
            /* Corrigi o nome da variável */
            font-weight: bold;
            user-select: none;

            animation: seta 1.8s ease-in-out infinite;
        }

        @keyframes seta {

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

            50% {
                transform: translateX(10px);
            }
        }

        /* =============SEGUNDA PARTE DPS DO ANTES E DEPOIS============== */

        .como-funciona {
            padding: 100px 8%;
            margin-left: 25px;
        }

        .titulo-secao {
            margin: 0 auto 60px;
            color: #1A9E94;
            text-align: center;
            max-width: 800px;
            font-size: 1.4rem;
            font-family: sans-serif;
            margin-bottom: 60px;
        }

        .titulo-secao p {
            width: 100%;
            max-width: 1200px;
            margin: 20px auto 0;
            color: #666;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .cards-funcionamento {

            display: flex;
            gap: 25px;
            flex-wrap: wrap;

        }

        .card-funcionamento {

            flex: 1;
            min-width: 260px;

            padding: 35px;

            border-radius: 20px;

            border: 2px solid #d8d8d8;

            transition: .35s;
            cursor: pointer;

            background: white;
        }

        .card-funcionamento:hover {

            transform: translateY(-10px);

            border-color: #1A9E94;

            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

        }

        .numero {

            font-size: 3rem;

            font-weight: bold;

            color: #1A9E94;

            display: block;

            margin-bottom: 25px;

        }

        .card-funcionamento h3 {

            font-size: 1.4rem;

            margin-bottom: 15px;

        }

        .card-funcionamento p {

            color: #666;

            line-height: 1.7;

        }

        /* ============================= */
        /* CTA FINAL */
        /* ============================= */

        .cta-final {

            margin: 120px auto 60px;
            padding: 70px 40px;

            text-align: center;

            background: linear-gradient(135deg, #1A9E94, #23aca0);

            border-radius: 24px;

            color: white;

            max-width: 1200px;

            box-shadow: 0 20px 40px rgba(26, 158, 148, .15);

        }

        .cta-final h2 {

            font-size: 2.6rem;

            margin-bottom: 20px;

            letter-spacing: -1px;

        }

        .cta-final p {

            max-width: 700px;

            margin: 0 auto 40px;

            line-height: 1.8;

            font-size: 1.05rem;

            color: rgba(255, 255, 255, .9);

        }

        /* ============================= */
        /* BOTÃO */
        /* ============================= */

        .btn-apex {

            display: inline-flex;
            align-items: center;
            gap: 12px;

            padding: 16px 34px;

            text-decoration: none;

            color: #1A9E94;
            background: white;

            border-radius: 12px;

            font-weight: 600;

            border: 2px solid white;
            border-bottom: 5px solid #d9d9d9;

            transition:
                transform .3s ease,
                box-shadow .3s ease,
                background .3s ease;

        }

        .btn-apex span {

            transition: transform .3s ease;

        }

        .btn-apex:hover {

            transform: translateY(-5px);

            background: #f7f7f7;

            box-shadow: 0 15px 30px rgba(0, 0, 0, .15);

        }

        .btn-apex:hover span {

            transform: translateX(6px);

        }

        /* ============================= */
        /* CTA FINAL - TEMA ESCURO */
        /* ============================= */

        body.dark .cta-final {
            background: linear-gradient(135deg, #1A9E94, #23aca0);
            color: #121212;
        }

        body.dark .cta-final h2 {
            color: #121212;
        }

        body.dark .cta-final p {
            color: rgba(18, 18, 18, .85);
        }


        /* ============================= */
        /* BOTÃO - TEMA ESCURO */
        /* ============================= */

        body.dark .btn-apex {
            color: #1A9E94;
            background: #121212;
            border: 2px solid #121212;
            border-bottom: 5px solid #080808;
        }

        body.dark .btn-apex:hover {
            background: #181818;
            box-shadow: 0 15px 30px rgba(0, 0, 0, .30);
        }

        /* Responsividade para Celulares */
        @media (max-width: 768px) {
            .comparison-container {
                flex-direction: column;
            }

            .comparison-arrow {
                transform: rotate(90deg);
                margin: 15px 0;
            }
        }

        /* Rodapé */
        footer {
            background-color: var(--forest-green);
            color: var(--text-light);
            text-align: center;
            padding: 30px 20px;
            margin-top: 60px;
            font-size: 0.9rem;
        }