        :root {
            --primary: #9dd3af;
            --primary-dark: #7fa78b;
            --secondary: #ce7c59;
            --gray: #6b7280;
            --bg: #fef2e0;
        }

        @font-face {
            font-family: 'Open Sans';
            src: url('fonts/OpenSans-Regular.ttf') format('truetype');
            /* Ajuste o caminho e o formato */
            font-weight: normal;
            font-style: normal;
        }

        @font-face {
            font-family: 'Open Sans - bold';
            src: url('fonts/OpenSans-Bold.ttf') format('truetype');
            /* Ajuste o caminho e o formato */
            /* font-weight: normal; */
            font-style: normal;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Open Sans', sans-serif;
            font-weight: 600;
        }

        h2,
        h3,
        p {
            margin-bottom: 6px;
        }

        /* links dentro de parágrafo */
        p a {
            font-weight: 600;
            color: var(--secondary);
        }

        /* leve destaque no hover */
        p a:hover {
            color: var(--primary-dark);
        }

        b {
            font-family: 'Open Sans - bold';
        }

        html,
        body {
            overflow-x: hidden;
        }

        body {
            background: linear-gradient(135deg, #fdf7f0, #fff2ec, #fcf8f8);
            color: var(--secondary);
            scroll-behavior: smooth;
            position: relative;
            /* font-family: 'Open Sans', sans-serif; */
        }

        /* background blur shapes */
        body::before,
        body::after {
            content: "";
            position: fixed;
            /* width: 400px;
            height: 400px; */
            border-radius: 50%;
            filter: blur(100px);
            z-index: -1;
        }

        body::before {
            top: -100px;
            left: -100px;
            background: rgba(208, 119, 68, 0.25);
        }

        body::after {
            bottom: -120px;
            right: -100px;
            background: rgba(246, 87, 59, 0.2);
        }

        /* HEADER */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            /* background: rgba(255,255,255,0.7); */
            /* backdrop-filter: blur(12px); */
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* padding: 15px 30px; */
            /* z-index: 1000; */
            transition: 0.3s;
            padding: 15px;
            z-index: 999;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
        }

        header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        @font-face {
            font-family: 'Chandiluna';
            src: url('fonts/Chandiluna.ttf') format('truetype');
            /* Ajuste o caminho e o formato */
            font-weight: normal;
            font-style: normal;
        }

        /* .h_logo {
            display: flex;
            flex-flow: row;
            align-items: baseline;
        } */
        .h_logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* imagem do logo */
        .logo-img {
            width: 70px;
            height: 70px;
            object-fit: contain;
            border-radius: 50%;
        }

        /* agrupa texto */
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .logo {
            /* font-weight: 600; */
            font-size: 25px;
            font-family: 'Chandiluna', cursive;
            margin-right: 15px;
            padding-bottom: 10px;
        }

        .sublogo {
            color: var(--primary-dark);
            font-size: 18px;
            /* font-family: 'Open Sans', sans-serif; */
        }

        /* @media (max-width: 768px) {
            .h_logo {
                flex-direction: column;
            }
        } */
        /* ajustes mobile */
        @media (max-width: 768px) {
            .logo-img {
                /* width: 60px;
                height: 60px; */
            }

            .logo {
                font-size: 23px;
            }

            .sublogo {
                font-size: 14px;
            }
        }

        @media (max-width: 1212px) {
            .h_logo {
                align-items: center;
            }
        }

        nav {
            display: flex;
            gap: 20px;
        }

        nav a {
            position: relative;
            margin: 0 15px;
            text-decoration: none;
            color: var(--primary-dark);
            /* font-weight: 500; */
            padding-left: 7px;
            transition: color 0.3s ease;
            font-size: 20px;
        }

        /* hover efeito borda animada */
        nav a::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            height: 0;
            background: var(--secondary);
            transition: height 0.3s ease;
        }

        nav a:hover {
            color: var(--secondary);
        }

        nav a:hover::before {
            height: 100%;
        }

        /* MOBILE MENU */
        /* .menu-toggle {
            display: none;
            font-size: 22px;
            cursor: pointer;
        } */
        #menuBtn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--secondary) !important;
        }

        #menuOverlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 998;
        }

        #menuOverlay.active {
            opacity: 1;
            pointer-events: all;
        }

        @media (min-width: 769px) {
            nav {
                text-align: center;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 100px;
                right: -220px;
                background: var(--bg);
                flex-direction: column;
                width: 220px;
                height: 100vh;
                padding: 20px;
                transition: right 0.3s ease;
                /* transition: 0.3s; */
                z-index: 999;
            }

            nav.active {
                right: 0;
            }

            #menuBtn {
                display: block;
            }

            /* .menu-toggle {
                display: block;
            } */
        }

        /* HERO */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 30px;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        .hero-slider {
            position: absolute;
            inset: 0;
            display: flex;
            transition: transform 1s ease-in-out;
            width: 100%;
        }

        .hero-slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 6s ease;
        }

        /* zoom effect */
        .hero-slide.active {
            transform: scale(1.08);
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg,
                    rgba(255, 255, 255, 0.7),
                    rgba(255, 255, 255, 0.4));
            backdrop-filter: blur(3px);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 20px;
            max-width: 600px;
        }

        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            .hero {
                padding: 0 20px;
            }

            .hero h1 {
                font-size: 36px;
            }
        }

        .hero p {
            color: var(--primary-dark);
            margin-bottom: 25px;
        }

        .hero p a {
            color: var(--primary-dark);
            text-decoration: none;
        }

        /* leve destaque no hover */
        .hero p a:hover {
            color: var(--secondary);
        }

        .btn {
            background: var(--primary);
            color: white;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            transition: 0.3s;
        }

        .btn:hover,
        .btn.active {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        section {
            padding: 60px 30px;
            max-width: 1100px;
            margin: auto;
            opacity: 0;
            transform: translateY(40px);
            transition: 0.6s;
            position: relative;
            scroll-margin-top: 80px;
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 10px;
            }
        }

        section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(6px);
            border-radius: 20px;
            z-index: -1;
        }

        section.show {
            opacity: 1;
            transform: translateY(0);
        }

        .sobre-container {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        #sobre p {
            color: var(--secondary);
        }

        .sobre-texto {
            flex: 1;
        }

        .sobre-imagem {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .sobre-imagem img {
            width: 100%;
            max-width: 350px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        @media (min-width: 1110px) {
            .sobre-texto {
                min-width: 650px;
            }
        }

        /* MOBILE */
        @media (max-width: 768px) {
            .sobre-container {
                flex-direction: column;
            }

            .sobre-imagem {
                order: 2;
                /* imagem embaixo */
                margin-top: 20px;
            }

            .sobre-texto {
                order: 1;
            }
        }

        .cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        @media (min-width: 600px) {
            .cards {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            }
        }

        /* premium subtle glow (recommended) */
        .card {
            position: relative;
            background: white;
            padding: 25px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            /* background: rgba(255, 255, 255, 0.6); */
            /* backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3); */
            display: flex;
            flex-flow: column;
            align-items: center;
            justify-content: center;
            text-align: center;

        }

        .card:hover,
        .card.active {
            box-shadow:
                0 10px 30px rgba(0, 0, 0, 0.06),
                0 0 0 1px rgba(157, 220, 175, 0.50),
                0 0 50px rgba(157, 220, 175, 0.25) inset;
            transform: translateY(-4px);
        }

        .card p,
        #faq p,
        #faq p a {
            color: var(--primary-dark)
        }

        #faq p a:hover {
            color: var(--secondary)
        }

        .card h3 a,
        #faq h3 a {
            color: var(--secondary);
        }
        .card h3 a {
            text-decoration: none;
        }

        .card h3 a:hover,
        #faq h3 a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        footer {
            text-align: center;
            padding: 40px;
            background: var(--primary);
            color: var(--bg);
        }

        footer a {
            color: var(--bg);
            text-decoration: none;
            opacity: 0.9;
        }

        footer a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

        .footer-grid {
            display: grid;
            gap: 30px;
        }

        @media(min-width:768px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }

        }

        .copyright {
            text-align: center;
            margin-top: 30px;
            opacity: .8;
        }

        .socials {
            display: flex;
            gap: 15px;
            margin-top: 10px;
            justify-content: center;
        }

        .socials a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* .socials a {
            margin: 0 10px;
            color: white;
            font-size: 22px;
            text-decoration: none;
        } */

        .socials svg {
            width: 18px;
            fill: var(--primary);
        }

        .socials a:hover {
            background: var(--secondary);
        }

        .socials a:hover svg {
            fill: var(--bg);
        }

        /* FLOAT BUTTONS */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 25px;
            right: 25px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
            z-index: 999;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        .whatsapp-float svg {
            width: 32px;
            fill: white;
        }

        /* .whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #25d366;
            color: white;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        } */

        /* .top {
            position: fixed;
            bottom: 90px;
            right: 20px;
            background: var(--secondary);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.3s;
        }

        .top.show {
            opacity: 1;
        } */

        /* INSTA */
        .insta {
            width: 100%;
            margin-top: 30px;
            border-radius: 16px;
            /* overflow: hidden; */
        }

        .insta iframe,
        .insta div {
            max-width: 100% !important;
        }

        /* força o widget a respeitar a tela */
        .elfsight-app-76796149-5110-4e2a-8ff8-644b4e560e40 {
            width: 100% !important;
            max-width: 100% !important;
        }
    