    /* Configurações Globais */
    :root {
        --primary-blue: #0ea5e9;
        --dark-blue: #0284c7;
        --text-main: #1e293b;
        --text-light: #64748b;
        --white: #ffffff;
        --bg-gray: #f8fafc;
    }

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

    body {
        font-family: "Inter", sans-serif;
        background-color: var(--bg-gray);
        color: var(--text-main);
        line-height: 1.6;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Navbar Fixa */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        height: 80px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #e2e8f0;
        z-index: 1000;
    }

    .nav-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo-icon {
        background: var(--primary-blue);
        color: white;
        width: 35px;
        height: 35px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

    .logo-text {
        font-size: 1.5rem;
        font-weight: 800;
    }

    .logo-text span {
        color: var(--primary-blue);
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 30px;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-light);
        font-weight: 600;
        font-size: 0.9rem;
        transition: 0.3s;
    }

    .nav-links a.active,
    .nav-links a:hover {
        color: var(--primary-blue);
    }

    /* Botões */
    .btn-primary {
        background: var(--primary-blue);
        color: white;
        border: none;
        padding: 5px 30px;
        border-radius: 50px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s;
    }

    .btn-primary:hover {
        background: var(--dark-blue);
        transform: translateY(-2px);
    }

    .btn-secondary {
        background: transparent;
        border: none;
        font-weight: 600;
        color: var(--text-main);
        cursor: pointer;
        margin-right: 10px;
    }

    .btn-dark {
        background: #0f172a;
        color: white;
        border: none;
        padding: 18px 30px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
    }

    /* Hero Section */
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .badge {
        background: #e0f2fe;
        color: var(--dark-blue);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    h1 {
        font-size: 3.5rem;
        line-height: 1.1;
        margin: 20px 0;
        font-weight: 800;
    }

    .highlight {
        color: var(--primary-blue);
    }

    .hero-text p {
        font-size: 1.1rem;
        color: var(--text-light);
        margin-bottom: 40px;
    }

    .image-wrapper {
        position: relative;
        width: 100%;
        min-height: 450px;
        background-color: #e0f2fe;
        border-radius: 30px;
    }

    .image-wrapper img {
        width: 100%;
        height: 100%;
        min-height: 450px;
        object-fit: cover;
        border-radius: 30px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    }

    /* Utilitários */
    .section-padding {
        padding: 80px 0;
    }

    .bg-dark {
        background-color: #0f172a;
    }

    .bg-light {
        background-color: var(--bg-gray);
    }

    .text-white {
        color: #ffffff;
    }

    .text-center {
        text-align: center;
    }

    .mb-5 {
        margin-bottom: 40px;
    }

    .overflow-hidden {
        overflow: hidden;
    }

    /* Correção de cor do título no bg-dark */
    .bg-dark .section-title {
        color: white !important;
    }

    .section-title {
        font-size: 36px;
        font-weight: 800;
        color: var(--text-main);
        margin-bottom: 25px;
        letter-spacing: -0.5px;
    }

    /* --- QUEM SOMOS --- */
    #quem-somos {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .quem-somos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .qs-card {
        background: #1e293b;
        padding: 40px;
        border-radius: 16px;
        border: 1px solid #334155;
        transition: transform 0.3s ease;
    }

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

    .qs-highlight {
        border-left: 4px solid var(--primary-blue);
    }

    .qs-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .qs-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
        color: #f8fafc;
    }

    .qs-card p {
        color: #94a3b8;
        line-height: 1.6;
    }

    /* --- COMO FUNCIONA (ATUALIZADO) --- */
    #como-funciona {
        background-color: var(--bg-gray);
    }

    #como-funciona .section-title {
        color: var(--text-main);
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 60px;
        letter-spacing: -1px;
    }

    #como-funciona .section-title .highlight-color {
        color: var(--primary-blue);
    }

    .steps-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .step-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: var(--white);
        padding: 40px 30px;
        border-radius: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        flex: 1;
        max-width: 350px;
        text-align: center;
    }

    .icon-wrapper {
        background-color: #e0f2fe;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 25px;
    }

    .icon-wrapper svg {
        width: 36px;
        height: 36px;
        stroke: var(--primary-blue);
        stroke-width: 2.5px;
    }

    .step-text h4 {
        font-size: 20px;
        color: var(--text-main);
        margin-bottom: 12px;
        font-weight: 800;
    }

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

    /* --- AVALIAÇÕES (CARROSSEL ANIMADO) --- */
    .carousel-container {
        width: 100%;
        position: relative;
        mask-image: linear-gradient(to right,
                transparent,
                black 10%,
                black 90%,
                transparent);
        -webkit-mask-image: linear-gradient(to right,
                transparent,
                black 10%,
                black 90%,
                transparent);
    }

    .carousel-track {
        display: flex;
        gap: 20px;
        animation: scroll 20s linear infinite;
        width: calc(350px * 6 + 100px);
    }

    .carousel-track:hover {
        animation-play-state: paused;
    }

    .review-card {
        background: #1e293b;
        border: 1px solid #334155;
        padding: 30px;
        border-radius: 12px;
        min-width: 350px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .stars {
        color: #fbbf24;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .review-card p {
        color: #cbd5e1;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .review-author {
        color: var(--primary-blue);
        font-weight: 600;
        font-size: 14px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-350px * 3 - 60px));
        }
    }

    /* Footer */
    .footer {
        background-color: #0f172a;
        padding-top: 80px;
        color: var(--text-light);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        margin-bottom: 60px;
    }

    .footer-brand .logo-text {
        color: var(--white);
    }

    .footer-brand p {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.6;
    }

    .footer h4 {
        color: var(--white);
        font-size: 18px;
        margin-bottom: 25px;
        font-weight: 600;
    }

    .footer ul {
        list-style: none;
    }

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

    .footer ul a {
        text-decoration: none;
        color: var(--text-light);
        font-size: 14px;
        transition: 0.3s;
    }

    .footer ul a:hover {
        color: var(--primary-blue);
    }

    .social-icons {
        display: flex;
        gap: 20px;
    }

    .social-icons svg {
        width: 24px;
        height: 24px;
        stroke: var(--text-light);
        transition: 0.3s;
        cursor: pointer;
    }

    .social-icons svg:hover {
        stroke: var(--primary-blue);
        transform: translateY(-3px);
    }

    .footer-bottom {
        border-top: 1px solid #1e293b;
        padding: 25px 0;
        text-align: center;
        font-size: 14px;
    }

    /* Login e Cadastro */
    .auth-body {
        background-color: var(--white);
        height: 100vh;
        overflow: hidden;
    }

    .auth-layout {
        display: flex;
        height: 100vh;
        width: 100%;
    }

    .auth-banner {
        flex: 1;
        background-color: var(--dark-bg, #0f172a);
        color: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px;
        position: relative;
        overflow: hidden;
    }

    .auth-banner::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle,
                rgba(14, 165, 233, 0.1) 0%,
                rgba(15, 23, 42, 1) 60%);
        z-index: 0;
    }

    .auth-banner-content {
        position: relative;
        z-index: 1;
        max-width: 450px;
    }

    .auth-banner .logo {
        margin-bottom: 40px;
    }

    .auth-banner h2 {
        font-size: 36px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .auth-banner p {
        color: var(--text-light);
        font-size: 16px;
        line-height: 1.6;
    }

    .banner-graphic {
        margin-top: 50px;
        opacity: 0.2;
    }

    .banner-graphic svg {
        width: 150px;
        height: 150px;
        color: var(--primary-blue);
    }

    .auth-form-section {
        flex: 1;
        background-color: var(--bg-gray, #f8fafc);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 200px;
        position: relative;
    }

    .back-link {
        position: absolute;
        top: 40px;
        right: 40px;
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: var(--text-light);
        font-weight: 500;
        font-size: 14px;
        transition: color 0.3s;
    }

    .back-link:hover {
        color: var(--primary-blue);
    }

    .auth-box {
        width: 100%;
        max-width: 400px;
        background: var(--white);
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
    }

    .auth-box.hidden {
        display: none;
    }

    .auth-header {
        margin-bottom: 30px;
        text-align: center;
    }

    .auth-header h2 {
        font-size: 24px;
        color: var(--text-main);
        margin-bottom: 10px;
        font-weight: 800;
    }

    .auth-header p {
        color: var(--text-light);
        font-size: 14px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--text-main);
        font-weight: 600;
        font-size: 14px;
    }

    .form-group input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #cbd5e1;
        border-radius: 10px;
        font-size: 15px;
        color: var(--text-main);
        outline: none;
        transition:
            border-color 0.3s,
            box-shadow 0.3s;
    }

    .form-group input:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    }

    .form-options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        font-size: 14px;
    }

    .remember-me {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--text-light);
        cursor: pointer;
    }

    .forgot-password {
        color: var(--primary-blue);
        text-decoration: none;
        font-weight: 600;
    }

    .forgot-password:hover {
        text-decoration: underline;
    }

    .auth-btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .auth-switch {
        text-align: center;
        font-size: 14px;
        color: var(--text-light);
    }

    .auth-switch a {
        color: var(--primary-blue);
        font-weight: 600;
        text-decoration: none;
    }

    .auth-switch a:hover {
        text-decoration: underline;
    }

    @media (max-width: 900px) {
        .auth-banner {
            display: none;
        }

        .auth-form-section {
            background-color: var(--white);
        }

        .auth-box {
            box-shadow: none;
            border: none;
            padding: 20px;
        }
    }

    .password-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }

    .password-wrapper input {
        padding-right: 45px;
        /* Deixa espaço para o ícone não ficar por cima do texto */
    }

    .toggle-password {
        position: absolute;
        right: 15px;
        background: transparent;
        border: none;
        cursor: pointer;
        color: var(--text-light);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        transition: color 0.3s ease;
    }

    .toggle-password:hover {
        color: var(--primary-blue);
    }

    .toggle-password:focus {
        outline: none;
    }

    .menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle .bar {
        height: 3px;
        width: 100%;
        background-color: var(--primary-blue);
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    /* Ocultar item mobile-only no desktop */
    .mobile-only {
        display: none;
    }

    /* Regras para telas menores que 768px (Tablets e Celulares) */
    @media (max-width: 768px) {
        .menu-toggle {
            display: flex;
        }

        .desktop-only {
            display: none;
        }

        .mobile-only {
            display: block;
            margin-top: 15px;
        }

        .nav-links {
            position: fixed;
            top: 80px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 80px);
            background-color: var(--bg-gray);
            flex-direction: column;
            align-items: center;
            padding-top: 40px;
            transition: left 0.3s ease-in-out;
        }

        .nav-links.active {
            left: 0;
        }

        .hero-grid {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 30px;
        }

        h1 {
            font-size: 2.5rem;
        }

        .image-wrapper {
            min-height: 300px;
        }

        .image-wrapper img {
            min-height: 300px;
        }

        .steps-wrapper {
            flex-direction: column;
            align-items: center;
        }

        .step-box {
            max-width: 100%;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .social-icons {
            justify-content: center;
        }

        .quem-somos-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .qs-card {
            padding: 30px 20px;
            margin: 0 10px;
        }

        #quem-somos {
            display: block;
            padding: 80px 0;
        }

        #quem-somos .section-title {
            margin-bottom: 40px;
            padding: 0 20px;
        }

        .quem-somos-grid {
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 0 20px;
        }

        .qs-card {
            margin: 0;
        }
    }

    @media (max-width: 900px) {
        .auth-banner {
            display: none;
        }

        .auth-form-section {
            background-color: var(--white);
            padding: 80px 20px 20px 20px;
            justify-content: flex-start;
        }

        .auth-box {
            box-shadow: none;
            border: none;
            padding: 20px 0;
            width: 100%;
        }

        .back-link {
            left: auto !important;
            right: 20px !important;
            top: 20px;
        }
    }