/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
/* --- VARIÁVEIS --- */
        :root {
            --primary: #5D9C59; /* Verde Natural/Saúde */
            --primary-dark: #3E6D3B;
            --secondary: #DFF0D8; /* Verde Claro Fundo */
            --accent: #F48FB1; /* Rosa Suave (Detalhes femininos/humanizados) */
            --text: #444;
            --light-bg: #F9FBF9;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(93, 156, 89, 0.15);
            --transition: all 0.3s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3 {
            color: var(--primary-dark);
        }

        h1 { font-weight: 700; }
        h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; }

        /* --- UTILITÁRIOS --- */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding { padding: 80px 0; }
        .text-center { text-align: center; }

        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(93, 156, 89, 0.3);
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(93, 156, 89, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            box-shadow: none;
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }

        /* --- HEADER --- */
        header {
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo i { color: var(--primary); }

        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .nav-link:hover { color: var(--primary); }

        /* --- HERO --- */
        .hero {
            padding-top: 120px;
            padding-bottom: 80px;
            background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
            position: relative;
            overflow: hidden;
        }

        /* Elemento decorativo de fundo (folha) */
        .hero::after {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 400px;
            height: 400px;
            background-image: url('../images/8b8e84e3e23cd33129e4e1fa2a0e3412.jpg'); /* Textura de folha ou similar */
            background-size: cover;
            opacity: 0.05;
            border-radius: 50%;
            z-index: 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #333;
        }

        .hero-text span {
            color: var(--primary);
            position: relative;
            z-index: 1;
        }
        
        .hero-text span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background-color: var(--secondary);
            z-index: -1;
            border-radius: 4px;
        }

        .hero-text p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-img {
            position: relative;
        }

        .hero-img img {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow);
            /* Máscara orgânica para a foto */
            mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FF0066' d='M44.7,-76.4C58.9,-69.2,71.8,-59.1,81.6,-46.6C91.4,-34.1,98.1,-19.2,95.8,-5.3C93.5,8.6,82.2,21.5,71.6,32.6C61,43.7,51.1,53.1,40.2,61.3C29.3,69.5,17.4,76.5,4.4,78.9C-8.6,81.3,-22.7,79.1,-35.6,72.8C-48.5,66.5,-60.2,56.1,-69.3,43.6C-78.4,31.1,-84.9,16.5,-84.3,2.2C-83.7,-12.1,-76,-26.1,-66.3,-38.1C-56.6,-50.1,-44.9,-60.1,-32.3,-68.2C-19.7,-76.3,-6.2,-82.5,4.2,-89.8L14.6,-97.1' transform='translate(100 100)' /%3E%3C/svg%3E");
            mask-size: contain;
            mask-repeat: no-repeat;
            mask-position: center;
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FF0066' d='M44.7,-76.4C58.9,-69.2,71.8,-59.1,81.6,-46.6C91.4,-34.1,98.1,-19.2,95.8,-5.3C93.5,8.6,82.2,21.5,71.6,32.6C61,43.7,51.1,53.1,40.2,61.3C29.3,69.5,17.4,76.5,4.4,78.9C-8.6,81.3,-22.7,79.1,-35.6,72.8C-48.5,66.5,-60.2,56.1,-69.3,43.6C-78.4,31.1,-84.9,16.5,-84.3,2.2C-83.7,-12.1,-76,-26.1,-66.3,-38.1C-56.6,-50.1,-44.9,-60.1,-32.3,-68.2C-19.7,-76.3,-6.2,-82.5,4.2,-89.8L14.6,-97.1' transform='translate(100 100)' /%3E%3C/svg%3E");
            -webkit-mask-size: contain;
            -webkit-mask-repeat: no-repeat;
            -webkit-mask-position: center;
        }

        /* --- METODOLOGIA --- */
        .method-section {
            background-color: var(--white);
        }

        .method-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .method-card {
            background: var(--light-bg);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .method-card:hover {
            background: var(--white);
            box-shadow: var(--shadow);
            border-color: var(--secondary);
            transform: translateY(-5px);
        }

        .method-icon {
            width: 70px;
            height: 70px;
            background-color: var(--secondary);
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
        }

        .method-card h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .method-card p {
            font-size: 0.9rem;
            color: #666;
        }

        /* --- SOBRE --- */
        .about-section {
            background-color: #f4f9f4;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: center;
        }

        .about-img-container img {
            width: 100%;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }

        .about-text h2 { margin-bottom: 20px; }
        .about-text p { margin-bottom: 20px; color: #555; }

        .credentials {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        /* --- SERVIÇOS --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .service-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: var(--transition);
            border-bottom: 3px solid transparent;
        }
        .service-card:hover {
            transform: translateY(-5px);
            border-bottom-color: var(--primary);
        }
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        /* --- PROCESSO --- */
        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 50px;
            position: relative;
        }
        .process-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 20px;
            font-size: 1.2rem;
        }
        
        /* --- BÔNUS --- */
        .bonus-section {
            background-color: var(--primary-dark);
            color: white;
            text-align: center;
        }
        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .bonus-item {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(5px);
        }
        .bonus-item i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .cred-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 0.9rem;
        }

        /* --- DEPOIMENTOS --- */
        .testimonials {
            background-color: var(--white);
        }

        .test-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .test-card {
            background: var(--white);
            border: 1px solid #eee;
            padding: 30px;
            border-radius: 10px;
            position: relative;
        }

        .test-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: var(--secondary);
            font-family: serif;
            z-index: 0;
        }

        .test-content {
            position: relative;
            z-index: 1;
        }

        .test-author {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }

        .test-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* --- FAQ --- */
        .faq-section {
            max-width: 800px;
            margin: 0 auto;
        }

        details {
            background: var(--white);
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        summary {
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--primary-dark);
        }

        summary::after {
            content: '\f078'; /* FontAwesome Chevron Down */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            transition: transform 0.3s;
        }

        details[open] summary::after {
            transform: rotate(180deg);
        }

        details p {
            padding: 0 20px 20px;
            color: #666;
            border-top: 1px solid #f0f0f0;
            margin-top: 0;
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 60px 0 20px;
            text-align: center;
        }

        .footer-social {
            margin: 20px 0;
        }

        .footer-social a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: 0.3s;
        }

        .footer-social a:hover { color: var(--secondary); }

        /* --- WHATSAPP --- */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background-color: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 1000;
            transition: 0.3s;
        }

        .whatsapp-float:hover { transform: scale(1.1); }

        /* --- RESPONSIVO --- */
        @media (max-width: 768px) {
            .hero-grid, .about-grid { grid-template-columns: 1fr; text-align: center; }
            .nav-menu { display: none; } /* Simplificação para o exemplo */
            .hero-text h1 { font-size: 2.2rem; }
            .about-img-container { order: -1; margin-bottom: 30px; }
            .credentials { justify-content: center; flex-wrap: wrap; }
        }