@charset "UTF-8";

        :root {
            --primary-color: #5e1489; /* Roxo principal */
            --secondary-color: #f0f0f0; /* Cinza claro para fundos */
            --text-color: #333;
            --light-text-color: #666;
            --white: #fff;
            --gradient-purple: linear-gradient(45deg, #5e1489, #9c27b0); /* Degradê roxo */
            --gradient-hero: linear-gradient(135deg, #5e1489, #7b1fa2); /* Degradê mais suave para o hero */
            --gradient-green: linear-gradient(45deg, #4CAF50, #50d172); /* Novo degradê verde */
            --shadow-light: 0 4px 10px rgba(0, 0, 0, 0.05);
            --shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.1);
            --border-radius-soft: 12px;
        }

        /* Reset Básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--white);
            overflow-x: hidden; /* Evita scroll horizontal */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Estilo Apple Base --- */
        h1, h2, h3 {
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 20px;
        }

        p {
            margin-bottom: 15px;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Botões */
        .btn {
            display: inline-block;
            background: var(--gradient-green); /* Alterado para verde */
            color: var(--white);
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease-in-out;
            box-shadow: var(--shadow-medium);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
            filter: brightness(1.1); /* Leve brilho ao passar o mouse */
        }

        /* --- Seções --- */
        section {
            padding: 80px 0;
            opacity: 0; /* Para a animação de lazy load/fade-in */
            transform: translateY(20px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Seção Hero (Topo) --- */
        .hero-section {
            background: var(--gradient-hero);
            color: var(--white);
            padding: 100px 0;
            min-height: 70vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden; /* Para garantir que as animações não transbordem */
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect x="0" y="0" width="100%" height="100%" fill="url(#dots)"/></svg>') repeat;
            opacity: 0.8;
            z-index: 0;
        }

        .hero-section .container {
            position: relative;
            z-index: 1;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .hero-text {
            flex: 1;
            text-align: left;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--white);
            text-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .hero-text p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image img {
            max-width: 600px;
            /*border-radius: var(--border-radius-soft);
            box-shadow: var(--shadow-medium);*/
            transition: transform 0.5s ease-in-out;
        }

        .hero-image img:hover {
            transform: scale(1.02);
        }
        
        /* Esconde o botão específico para mobile por padrão */
        .btn-mobile-only {
            display: none;
        }

        /* --- Seção de Benefícios --- */
        .benefits-section {
            background-color: var(--white);
            text-align: center;
        }

        .benefits-section h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
        }

        .benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            list-style: none;
            margin-top: 40px;
        }

        .benefits-list li {
            background-color: var(--secondary-color);
            padding: 30px;
            border-radius: var(--border-radius-soft);
            box-shadow: var(--shadow-light);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .benefits-list li:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .benefits-list li img {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
        }

        .benefits-list li span {
            font-weight: 500;
            font-size: 1.1rem;
            color: var(--text-color);
        }

        /* --- Seção Composição / Ingredientes --- */
        .composition-section {
            background: var(--gradient-purple);
            color: var(--white);
            text-align: center;
        }

        .composition-section h2 {
            font-size: 2.5rem;
            color: var(--white);
        }

        .composition-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .composition-item {
            background-color: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            padding: 30px;
            border-radius: var(--border-radius-soft);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .composition-item:hover {
            transform: translateY(-8px);
            background-color: rgba(255, 255, 255, 0.25);
        }

        .composition-item img {
            width: 70px;
            height: 70px;
            margin: 0 auto 15px auto;
            filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
        }

        .composition-item h3 {
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 10px;
        }

        .composition-item p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }

        /* --- Seção Depoimentos (Vídeos) --- */
        .testimonials-section {
            background-color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .testimonials-section h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
        }

        .video-slider {
            scroll-snap-type: x mandatory;
            display: flex;
            overflow-x: auto; /* Alterado para auto para permitir scroll, mas será controlado por JS */
            overflow-y: hidden;
            scroll-behavior: smooth;
            margin-top: 40px;
            border-radius: var(--border-radius-soft);
            box-shadow: var(--shadow-medium);
            background-color: var(--secondary-color); /* Fundo para o slider */
            padding: 20px; /* Padding interno */
            align-items: center; /* Centraliza verticalmente o conteúdo */
        }

        .video-item {
            scroll-snap-align: start;
            min-width: 100%;
            padding: 20px; /* Reduzi o padding interno */
            text-align: center;
            flex-shrink: 0;
        }

        .video-item iframe {
            width: 100%;
            max-width: 700px; /* Limita a largura máxima do vídeo */
            height: 400px; /* Altura padrão para vídeos */
            border-radius: var(--border-radius-soft);
            box-shadow: var(--shadow-light);
            border: none;
        }

        .slider-nav {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .slider-nav button {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 1.5rem;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: var(--shadow-light);
        }

        .slider-nav button:hover {
            background-color: #7b1fa2;
            transform: scale(1.1);
        }


        /* --- Seção Como Funciona (Timeline) --- */
        .how-it-works-section {
            background-color: var(--secondary-color);
            text-align: center;
        }

        .how-it-works-section h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 60px auto 0 auto;
            padding: 20px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            width: 4px;
            background-color: var(--primary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
            border-radius: 2px;
        }

        .timeline-item {
            padding: 10px 0;
            position: relative;
            width: 50%;
            margin-bottom: 40px;
        }

        .timeline-item:nth-child(odd) {
            left: 0%;
            padding-right: 50px;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 50px;
            text-align: left;
        }

        .timeline-number { /* Estilo para o número do passo */
            width: 50px;
            height: 50px;
            background: var(--gradient-purple);
            border-radius: 50%;
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.5rem;
            box-shadow: var(--shadow-medium);
            border: 3px solid var(--white);
            z-index: 1; /* Garante que fique acima da linha */
        }

        .timeline-item:nth-child(odd) .timeline-content {
            background-color: var(--white);
            padding: 25px;
            border-radius: var(--border-radius-soft);
            box-shadow: var(--shadow-light);
            transform-origin: right;
            transition: transform 0.5s ease;
        }

        .timeline-item:nth-child(even) .timeline-content {
            background-color: var(--white);
            padding: 25px;
            border-radius: var(--border-radius-soft);
            box-shadow: var(--shadow-light);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        /* Animação para a linha do tempo (via JS) */
        .timeline-item.active .timeline-content {
            transform: scale(1.05);
        }


        /* --- Seção Ofertas (Kits) --- */
        .offers-section {
            background: var(--gradient-purple);
            color: var(--white);
            text-align: center;
        }

        .offers-section h2 {
            font-size: 2.5rem;
            color: var(--white);
        }

        .kits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .kit-card {
            background-color: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            padding: 30px;
            border-radius: var(--border-radius-soft);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .kit-card:hover {
            transform: translateY(-10px);
            background-color: rgba(255, 255, 255, 0.25);
        }

        .kit-card.recommended {
            border: 3px solid var(--white);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
        }

        .kit-card .badge {
            position: absolute;
            top: -15px;
            right: -15px;
            background-color: #ffc107; /* Amarelo de destaque */
            color: #333;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: var(--shadow-light);
            animation: bounce 1s infinite alternate;
        }

        .kit-card .discount-seal { /* Estilo para o selo de desconto */
            position: absolute;
            top: -30px; /* Posição acima do card */
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-green); /* Cor do selo de desconto */
            color: var(--white);
            padding: 10px 15px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: var(--shadow-medium);
            z-index: 1;
            animation: pulse 1.5s infinite alternate; /* Animação para o selo */
        }

        .kit-card img {
            max-width: 245px;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
        }

        .kit-card h3 {
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 10px;
        }

        .kit-card h1 {
            font-size: 1rem;
            color: var(--white);
            margin-top: 5px;
        }

        .kit-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .kit-card .btn {
            width: 100%;
            padding: 18px 0;
            font-size: 1.1rem;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            background: var(--gradient-green); /* Botão interno do kit branco */
            color: var(--white); /* Texto do botão interno branco */
        }
        .kit-card .btn:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
            transform: translateY(-5px);
        }


        /* --- Seção Garantia --- */
        .guarantee-section {
            background-color: var(--white);
            text-align: center;
        }

        .guarantee-section h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
        }

        .guarantee-seal {
            width: 150px;
            height: 150px;
            margin: 40px auto 30px auto;
            border-radius: 50%;
            box-shadow: var(--shadow-medium);
            animation: rotateScale 3s infinite ease-in-out alternate;
        }

        .guarantee-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: var(--light-text-color);
        }

        /* --- Seção FAQ --- */
        .faq-section {
            background-color: var(--secondary-color);
        }

        .faq-section h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            text-align: center;
        }

        .faq-accordion {
            margin-top: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-item {
            background-color: var(--white);
            border-radius: var(--border-radius-soft);
            margin-bottom: 15px;
            box-shadow: var(--shadow-light);
            overflow: hidden;
        }

        .accordion-header {
            width: 100%;
            background-color: var(--white);
            padding: 20px 30px;
            border: none;
            text-align: left;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .accordion-header::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .accordion-header.active::after {
            transform: rotate(45deg);
        }

        .accordion-content {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
        }

        .accordion-content p {
            padding: 20px 0;
            color: var(--light-text-color);
            font-size: 1rem;
        }

        /* --- Rodapé --- */
        .footer {
            background-color: var(--primary-color);
            color: rgba(255, 255, 255, 0.8);
            padding: 40px 0;
            text-align: center;
            font-size: 0.9rem;
        }

        .footer p {
            margin-bottom: 10px;
        }

        .footer-nav a {
            color: rgba(255, 255, 255, 0.8);
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--white);
            text-decoration: underline;
        }

        /* --- Animações --- */
        /* Fade In Up */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in-up {
            opacity: 0; /* Começa invisível */
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* Fade In Right */
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-fade-in-right {
            opacity: 0; /* Começa invisível */
            animation: fadeInRight 0.8s ease-out forwards;
        }

        /* Animação com delay (para elementos sequenciais) */
        .delay-1 { animation-delay: 0.2s !important; }
        .delay-2 { animation-delay: 0.4s !important; }
        .delay-3 { animation-delay: 0.6s !important; }
        .delay-4 { animation-delay: 0.8s !important; }
        .delay-5 { animation-delay: 1.0s !important; }
        .delay-6 { animation-delay: 1.2s !important; }

        /* Animação para o badge "Mais Vendido" */
        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        /* Animação para o selo de garantia */
        @keyframes rotateScale {
            0%, 100% {
                transform: rotate(0deg) scale(1);
            }
            50% {
                transform: rotate(5deg) scale(1.05);
            }
        }

        /* Animação para o selo de desconto */
        @keyframes pulse {
            0% {
                transform: translateX(-50%) scale(1);
                box-shadow: var(--shadow-medium);
            }
            50% {
                transform: translateX(-50%) scale(1.05);
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            }
            100% {
                transform: translateX(-50%) scale(1);
                box-shadow: var(--shadow-medium);
            }
        }


        /* --- Responsividade --- */

        /* Desktop (valores base já para desktop) */
        @media (min-width: 1025px) {
            .hero-text h1 {
                font-size: 4.2rem;
            }

            /* Alteração para a seção de composição no desktop */
            .composition-section .composition-grid {
                grid-template-columns: repeat(3, 1fr); /* Define 3 colunas */
            }

            /* Centraliza os 2 últimos itens na grade de 3 colunas quando há 5 itens no total.
               Este seletor visa o 4º item DA GRADE (.composition-item)
               APENAS SE ele também for o penúltimo item (nth-last-child(2)).
               Isso é verdadeiro quando há exatamente 5 itens no total.
               O 4º item então é instruído a iniciar na segunda coluna da grade.
               O 5º item fluirá automaticamente para a terceira coluna.
               Resultado: [ ][item4][item5]
            */
            .composition-section .composition-grid .composition-item:nth-child(4):nth-last-child(2) {
                grid-column-start: 2;
            }
        }

        /* Tablet */
        @media (max-width: 1024px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-text {
                order: 2; /* Texto abaixo da imagem no tablet/mobile */
                margin-top: 30px;
            }

            .hero-image {
                order: 1;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .hero-text p {
                font-size: 1.1rem;
            }

            .benefits-list {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            }

            .composition-grid, .kits-grid { /* Mantém o auto-fit para tablet, a regra de desktop (min-width: 1025px) não se aplicará aqui */
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }

            .timeline::before {
                left: 20px; /* Alinha a linha do tempo à esquerda */
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                text-align: left;
            }

            .timeline-item:nth-child(odd) {
                padding-right: 0;
            }

            .timeline-item:nth-child(even) {
                left: 0; /* Alinha todos os itens à esquerda */
            }

            .timeline-number { /* Posição do número no tablet */
                left: 20px;
                transform: translateX(0);
            }

            .video-item iframe {
                height: 300px; /* Ajuste a altura para tablet */
            }
        }

        /* Mobile */
        @media (max-width: 767px) {
            section {
                padding: 60px 0;
            }

            .hero-section {
                padding: 80px 0 60px 0;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-text p {
                font-size: 1rem;
                margin-bottom: 20px; /* ALTERAÇÃO: Espaço reduzido entre texto e imagem */
            }

            .btn {
                padding: 12px 25px;
                font-size: 1rem;
            }

            /* 1 - Centralize o botão da primeira seção na versão mobile */
            .hero-text .btn {
                display: block; /* Ocupa a largura total */
                margin: 0 auto; /* Centraliza */
                text-align: center;
            }

            h2 {
                font-size: 2rem;
            }

            .benefits-list, .composition-grid, .kits-grid {
                grid-template-columns: 1fr; /* Uma coluna no mobile */
            }

            .video-item iframe {
                height: 200px; /* Ajuste a altura para mobile */
            }

            .faq-accordion {
                padding: 0 10px;
            }

            .accordion-header {
                font-size: 1rem;
                padding: 15px 20px;
            }

            .accordion-content p {
                padding: 15px 0;
                font-size: 0.9rem;
            }

            .footer-nav a {
                display: block;
                margin: 10px 0;
            }

            .kit-card .discount-seal {
                font-size: 0.9rem; /* Ajuste o tamanho da fonte para mobile */
                padding: 8px 12px;
            }

            /* --- ALTERAÇÃO SOLICITADA PARA MOBILE --- */
            /* Esconde o botão que fica dentro do texto */
            .hero-text .btn-desktop-tablet {
                display: none;
            }
            
            /* Exibe e estiliza o botão que fica fora do texto */
            .btn-mobile-only {
                display: block;
                order: 3;
                margin: 20px auto 0;
            }

            /* Reordena os elementos principais */
            .hero-text {
                order: 1;
                text-align: center;
            }
            .hero-image {
                order: 2;
                margin-top: 0; /* ALTERAÇÃO: Espaço reduzido entre texto e imagem */
            }
            /* --- FIM DA ALTERAÇÃO --- */
        }

        /* --- BOTÃO WHATSAPP --- */
        .whatsapp-button {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            background-color: #128C7E;
        }

        .whatsapp-button img {
            width: 35px;
            height: 35px;
        }

