        /* Variáveis de cores */
        :root {
            --verde-principal: #00a859;
            --verde-escuro: #008046;
            --preto: #121212;
            --branco: #ffffff;
            --cinza-claro: #f5f5f5;
            --cinza-escuro: #333333;
        }

        /* Reset e configurações gerais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--preto);
            color: var(--branco);
            overflow-x: hidden;
        }

        section {
            padding: 80px 20px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        h1, h2, h3 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        h1 {
            font-size: 3.5rem;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
        }

        h3 {
            font-size: 1.8rem;
        }

        p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 26px;
            background-color: var(--verde-principal);
            color: var(--branco);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .btn:hover {
            background-color: var(--verde-escuro);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-grande {
            padding: 16px 46px;
            font-size: 1.1rem;
        }

        /* Header e Navegação - CORRIGIDO O ALINHAMENTO */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(18, 18, 18, 0.9);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 3px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--verde-principal);
            text-decoration: none;
        }

        .logo span {
            color: var(--branco);
        }

        .nav-links {
            display: flex;
            list-style: none;
            align-items: center; /* Adicionado para alinhar verticalmente */
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--branco);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--verde-principal);
        }

        .nav-links .btn {
            margin: 0; /* Removida margem para melhor alinhamento */
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            position: relative;
            /* IMAGEM DE FUNDO - ALTERE A URL AQUI */
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://boldoppq.github.io/facilita-imgs02/imagem%20principal.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        .hero-btns {
            opacity: 0;
            animation: fadeInUp 1s ease 0.6s forwards;
        }

        .hero-btns .btn {
            margin: 0 10px;
        }

        /* Sobre a Ferramenta */
        .sobre {
            background-color: var(--cinza-claro);
            color: var(--preto);
        }

        .sobre-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            align-items: center;
        }

        .sobre-texto h2 {
            text-align: left;
        }

        .sobre-texto p {
            margin-bottom: 30px;
        }

        .sobre-imagem {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .sobre-imagem img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .sobre-imagem:hover img {
            transform: scale(1.05);
        }


        /* Funcionalidades */
        .funcionalidades {
            background-color: var(--preto);
        }

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

        .func-card {
            background-color: var(--cinza-escuro);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .func-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 168, 89, 0.2);
        }

        .func-icon {
            font-size: 3rem;
            color: var(--verde-principal);
            margin-bottom: 20px;
        }

        /* Vídeo Section - AGORA COMPATÍVEL COM YOUTUBE */
        .video-section {
            background-color: var(--cinza-claro);
            color: var(--preto);
            text-align: center;
        }

        .video-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* Proporção 16:9 */
            height: 0;
            overflow: hidden;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* NOVA SEÇÃO: PLANOS DE PREÇOS */
        .planos {
            background-color: var(--preto);
            padding: 80px 20px;
        }

        .planos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .plano-card {
            background-color: var(--cinza-escuro);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .plano-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 168, 89, 0.2);
        }

        .plano-card.destaque {
            border: 2px solid var(--verde-principal);
            transform: scale(1.05);
        }

        .plano-card.destaque::before {
            content: "MAIS VENDIDO";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--verde-principal);
            color: var(--branco);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .plano-titulo {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--verde-principal);
        }

        .plano-preco {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 50px;
        }

        .plano-preco-antigo {
            text-decoration: line-through;
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .plano-descricao {
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
        }

        .plano-lista {
            list-style: none;
            margin-bottom: 50px;
            text-align: left;
        }

        .plano-lista li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            font-size: 18px;
        }

        .plano-lista i {
            margin-right: 10px;
            font-size: 1.5rem;
        }

        .fa-check {
            color: var(--verde-principal);
        }

        .fa-times {
            color: #ff4d4d;
        }

        .link-apenas-software {
            display: block;
            margin-top: 100px;
            margin-bottom: -50px;
            text-align: end;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .link-apenas-software:hover {
            color: var(--verde-principal);
        }

        /* Depoimentos */
.depoimentos {
    background-color: var(--verde-escuro);
}

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

        .depoimento-card {
            background-color: var(--cinza-escuro);
            border-radius: 10px;
            padding: 30px;
            position: relative;
        }

        .depoimento-texto {
            font-style: italic;
            margin-bottom: 20px;
        }

        .depoimento-autor {
            display: flex;
            align-items: center;
        }

        .depoimento-autor img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }

        /* Footer */
        footer {
            background-color: var(--preto);
            padding: 50px 20px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--verde-principal);
        }

        .footer-col p, .footer-col a {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-col a:hover {
            color: var(--verde-principal);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            font-size: 1.5rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
        }

        /* Animações */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsividade */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.3rem;
            }
            
            h2 {
                font-size: 1.6rem;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--preto);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hero-btns .btn {
                display: block;
                margin: 10px auto;
                width: 80%;
            }
            
            .plano-card.destaque {
                transform: scale(1);
            }
            
            .planos-grid {
                grid-template-columns: 1fr;
            }

            .link-apenas-software {
            margin-top: 50px;
            margin-bottom: -50px;
            text-align: center;
            }

            .plano-lista li {
            font-size: 16px;
        }

            .plano-lista i {
            font-size: 1.3rem;
        }

        .sumir-no-mobile{
            display: none;
        }
        .footer-bottom p{
            font-size: 14px;
        }

        }
