@charset "UTF-8";

 /* Variáveis de cores */
        :root {
            --verde-escuro: #1D361F;
            --verde-medio: #4A7C59;
            --verde-claro: #C4C786;
            --branco: #FFFFFF;
            --cinza-claro: #F5F5F5;
            --texto-escuro: #333333;
        }

        /* Reset básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--texto-escuro);
            background-color: var(--branco);
        }

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

        section {
            padding: 60px 0;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--verde-escuro);
        }

        h1 {
            font-size: 3rem;
        }

        h2 {
            font-size: 2.5rem;
        }

        h3 {
            font-size: 2rem;
        }

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

        img {
            max-width: 100%;
            height: auto;
        }

        .btn {
            display: inline-block;
            background-color: var(--verde-medio);
            color: var(--branco);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            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.1);
        }

        .btn-large {
            padding: 20px 40px;
            font-size: 1.5rem;
        }
        .stroke{
            stroke: #FFFFFF solid 2px;
        }

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

        .highlight {
            color: var(--verde-medio);
            font-weight: 700;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, var(--verde-escuro), var(--verde-medio));
            color: var(--branco);
            padding: 20px 0;
            /* position: fixed; */
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--branco);
            text-decoration: none;
        }
        .logo img{
            width: 60px;
        }

        /* Hero Section */
        .hero {
            padding: 180px 0 100px;
            background: url('imagens/bg-hero.jpg') no-repeat center center;
            background-size: cover;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(29, 54, 31, 0.8), rgba(74, 124, 89, 0.8));
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: var(--branco);
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .hero h1 {
            color: var(--branco);
            margin-bottom: 30px;
            font-size: 3.5rem;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
        }

        /* VSL Section */
        .vsl-section {
            background-color: var(--cinza-claro);
            text-align: center;
        }

        .vsl-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .vsl-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            margin-bottom: 30px;
            border: 10px solid var(--branco);
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

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

        /* Benefícios Section */
        .beneficios {
            background-color: var(--branco);
        }

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

        .beneficio-card {
            background-color: var(--cinza-claro);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border-bottom: 5px solid var(--verde-medio);
        }

        .beneficio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

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

        /* Depoimentos Section */
        .depoimentos {
            background-color: var(--cinza-claro);
        }

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

        .depoimento-card {
            background-color: var(--branco);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .depoimento-card::before {
            content: '"';
            font-size: 5rem;
            color: var(--verde-claro);
            position: absolute;
            top: -20px;
            left: 20px;
            opacity: 0.3;
        }

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

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

        .depoimento-foto {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .depoimento-info h4 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        .depoimento-info p {
            margin-bottom: 0;
            color: var(--verde-medio);
            font-size: 0.9rem;
        }

        /* Oferta Section */
        .oferta {
            background: linear-gradient(135deg, var(--verde-escuro), var(--verde-medio));
            color: var(--branco);
            text-align: center;
        }

        .oferta h2 {
            color: var(--branco);
        }

        .preco-container {
            margin: 50px 0;
        }

        .preco-original {
            text-decoration: line-through;
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
            display: block;
            margin-bottom: 10px;
        }

        .preco-atual {
            font-size: 4rem;
            font-weight: 700;
            color: var(--branco);
            margin-bottom: 20px;
        }

        .economia {
            display: inline-block;
            background-color: var(--verde-claro);
            color: var(--verde-escuro);
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        /* Escassez Section */
        .escassez {
            background-color: var(--branco);
            text-align: center;
        }

        .contador {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 40px 0;
        }

        .contador-item {
            background-color: var(--verde-medio);
            color: var(--branco);
            border-radius: 10px;
            padding: 20px;
            min-width: 100px;
        }

        .contador-numero {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .contador-label {
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .vagas-limitadas {
            background-color: var(--verde-claro);
            color: var(--verde-escuro);
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 30px;
        }

        /* FAQ Section */
        .faq {
            background-color: var(--cinza-claro);
        }

        .faq-item {
            background-color: var(--branco);
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .faq-pergunta {
            padding: 20px;
            background-color: var(--verde-claro);
            color: var(--verde-escuro);
            font-weight: 700;
            cursor: pointer;
            position: relative;
        }

        .faq-pergunta::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
        }

        .faq-resposta {
            padding: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* CTA Final */
        .cta-final {
            background: url('imagens/bg-cta.jpg') no-repeat center center;
            background-size: cover;
            position: relative;
            text-align: center;
            padding: 100px 0;
        }

        .cta-final::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(29, 54, 31, 0.9), rgba(74, 124, 89, 0.9));
        }

        .cta-content {
            position: relative;
            z-index: 1;
            color: var(--branco);
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-final h2 {
            color: var(--branco);
        }

        .garantia {
            margin: 40px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
        }

        .garantia-img {
            width: 300px;
            height: 300px;
            /*background-color: var(--branco); */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .garantia-texto {
            text-align: left;
            max-width: 400px;
        }

        /* Footer */
        footer {
            background-color: var(--verde-escuro);
            color: var(--branco);
            padding: 50px 0 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 20px;
        }

        .footer-column h3 {
            color: var(--branco);
            font-size: 1.3rem;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

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

        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--branco);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            h3 {
                font-size: 1.5rem;
            }

            .hero {
                padding: 150px 0 80px;
            }

            .contador {
                flex-wrap: wrap;
            }

            .garantia {
                flex-direction: column;
                text-align: center;
            }

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