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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

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

        /* Header */
        .header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo h1 {
            color: #2d5a3d;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .logo span {
            color: #6b7280;
            font-size: 0.9rem;
        }

        /* Botões */
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary {
            background: #2d5a3d;
            color: white;
        }

        .btn-primary:hover {
            background: #1f4028;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: #f59e0b;
            color: white;
        }

        .btn-secondary:hover {
            background: #d97706;
            transform: translateY(-2px);
        }

        .btn-large {
            padding: 16px 32px;
            font-size: 1.1rem;
        }

        .btn-full {
            width: 100%;
        }

        .btn-header {
            padding: 8px 16px;
            font-size: 0.9rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 120px 0 80px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.1;
            color: #1f2937;
            margin-bottom: 1.5rem;
        }

        .highlight {
            color: #2d5a3d;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #6b7280;
            margin-bottom: 2rem;
        }

        .hero-benefits {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .checkmark {
            color: #2d5a3d;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .hero-guarantee {
            margin-top: 1rem;
            color: #6b7280;
            font-size: 0.9rem;
        }

        .hero-media {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .video-placeholder {
            width: 100%;
            height: 300px;
            background: #e5e7eb;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .video-placeholder:hover {
            transform: scale(1.05);
        }

        .play-button {
            margin-bottom: 1rem;
        }

        /* Seções */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            text-align: center;
            color: #6b7280;
            margin-bottom: 3rem;
        }

        /* Como Funciona */
        .how-it-works {
            padding: 80px 0;
            background: #fff;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
            background: #f8fafc;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

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

        .step-number {
            width: 60px;
            height: 60px;
            background: #2d5a3d;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }

        .process-step h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        /* Benefícios */
        .benefits {
            padding: 80px 0;
            background: #f8fafc;
        }

        .benefits-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .benefit-card {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

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

        .benefit-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .benefit-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: #1f2937;
        }

        .benefits-image {
            display: flex;
            justify-content: center;
        }

        .image-placeholder {
            width: 100%;
            height: 300px;
            background: none;
            box-shadow: 0 4px 24px rgba(0,0,0,0.12);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #6b7280;
        }


        .image-familia {
            width: 100%;
            max-width: 1500px;
            border-radius: 12px;
        }

        .image-familia img {
            border-radius: 12px;
            max-width: 1500px;
            width: 100%;
            height: auto;
          display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-placeholder.clean {
            background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
        }

        /* Oferta Especial */
        .special-offer {
            padding: 80px 0;
            background: linear-gradient(135deg, #2d5a3d 0%, #1f4028 100%);
            color: white;
            text-align: center;
        }

        .offer-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .offer-badge {
            background: #f59e0b;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .offer-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .offer-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .offer-timer {
            margin-top: 1rem;
            color: #fbbf24;
            font-weight: 600;
        }

        /* Formulário de Contato */
        .contact-form {
            padding: 80px 0;
            background: #f8fafc;
        }

        .form-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .form-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .form-info p {
            font-size: 1.2rem;
            color: #6b7280;
            margin-bottom: 2rem;
        }

        .contact-benefits {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-benefit {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-form-fields {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #1f2937;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2d5a3d;
        }

        .form-disclaimer {
            font-size: 0.9rem;
            color: #6b7280;
            text-align: center;
            margin-top: 1rem;
        }

        /* Depoimentos */
        .testimonials {
            padding: 80px 0;
            background: white;
        }

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

        .testimonial-card {
            background: #f8fafc;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            background: #2d5a3d;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .testimonial-info h4 {
            font-size: 1.1rem;
            color: #1f2937;
        }

        .testimonial-info span {
            color: #6b7280;
            font-size: 0.9rem;
        }

        .testimonial-rating {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        /* Antes e Depois */
        .before-after {
            padding: 80px 0;
            background: #f8fafc;
        }

        .before-after-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
        }

        .before-after-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .before-after-image {
            flex: 1;
        }

        .before-after-image .image-placeholder {
            height: 200px;
            position: relative;
        }

        .before-label,
        .after-label {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #1f2937;
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .after-label {
            background: #2d5a3d;
        }

        .before-after-arrow {
            font-size: 2rem;
            color: #2d5a3d;
            font-weight: bold;
        }

        /* FAQ */
        .faq {
            padding: 80px 0;
            background: white;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid #e5e7eb;
            margin-bottom: 1rem;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: #2d5a3d;
        }

        .faq-question h3 {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .faq-toggle {
            font-size: 1.5rem;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        .faq-answer p {
            padding-bottom: 1.5rem;
            color: #6b7280;
        }

        /* Footer */
        .footer {
            background: #1f2937;
            color: white;
            padding: 60px 0 20px;
        }

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

        .footer-section h3,
        .footer-section h4 {
            margin-bottom: 1rem;
            color: #2d5a3d;
        }

        .footer-section h3 {
            font-size: 1.5rem;
        }

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

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-contact p {
            margin-bottom: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            background: #374151;
            border-radius: 6px;
            transition: background 0.3s ease;
        }

        .social-link:hover {
            background: #2d5a3d;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
        }

        /* Botão voltar ao topo */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #2d5a3d;
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: #1f4028;
            transform: translateY(-2px);
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .header-content {
                padding: 0.5rem 0;
            }
            .header {
                box-shadow: 0 1px 6px rgba(0,0,0,0.08);
            }
            .hero {
                padding-top: 40px;
            }
            .hero-content,
            .benefits-content,
            .form-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-title {
                font-size: 2.5rem;
                margin-top: 100px;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .btn-large {
                font-size: 0.95rem;
                padding: 12px 18px;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .before-after-item {
                flex-direction: column;
            }

            .before-after-arrow {
                transform: rotate(90deg);
            }

            .offer-content h2 {
                font-size: 2rem;
            }

            .container {
                padding: 0 15px;
            }

            .before-after-grid {
                gap: 7.5rem;
            }
        }

        @media (max-width: 480px) {
            .header-content {
                padding: 0.3rem 0;
            }
            .hero {
                padding-top: 65px;
            }

            .hero-title {
                font-size: 1.1rem;
                margin-top: 100px;
            }

            .hero-subtitle {
                font-size: 0.95rem;
            }

            .btn-large {
                font-size: 0.9rem;
                padding: 10px 12px;
            }

            .before-after-grid {
                gap: 2.5rem;
            }
        }

        .image-placeholder img {
            max-height: 225px;
            width: auto;
            max-width: 100%;
            display: block;
            margin: 0 auto;
            object-fit: contain;
            border-radius: 32px;
            padding: 1rem;
        }