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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

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

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }

        .nav-logo h2 {
            color: #94a46c;
            font-weight: 600;
            font-size: 1.5rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            text-decoration: none;
            color: #94a46c;
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #546122;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: #99A46D;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .bar {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

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

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

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

        .hero-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #99A46D;
            margin-bottom: 1rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #99A46D, #94a46c);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(44, 95, 93, 0.3);
            animation: fadeInUp 1s ease 0.4s both;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(44, 95, 93, 0.4);
        }

        .hero-photo {
            width: 415px;
            height: 500px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto;
            animation: fadeInRight 1s ease 0.6s both;
            box-shadow: 0 10px 30px rgba(44, 95, 93, 0.3);
            border: 4px solid #99A46D;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Seções Gerais */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: #99A46D;
            font-weight: 600;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #99A46D, #41500f);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* Sobre Section */
        .sobre {
            padding: 6rem 0;
            background: white;
        }

        .sobre-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #474747;
            max-width: 1200px;
            margin: 0 auto;
            text-align: justify;
            hyphens: auto;
            -webkit-hyphens: auto;
            -ms-hyphens: auto;
            text-justify: inter-word;
        }

        /* Benefícios Section */
        .beneficios {
            padding: 6rem 0;
            background: #f8fffe;
        }

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

        .beneficio-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #e8f4f3;
        }

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

        .beneficio-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #99A46D, #59613c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .beneficio-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .beneficio-content h3 {
            color: #99A46D;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .beneficio-content p {
            color: #666;
            line-height: 1.6;
        }

        /* Serviços Oferecidos Section */
        .especialidades {
            padding: 6rem 0;
            background: white;
        }

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

        .especialidade-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #e8f4f3;
        }

        .especialidade-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .especialidade-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #99A46D, #41500f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .especialidade-icon i {
            font-size: 2rem;
            color: white;
        }

        .especialidade-card h3 {
            color: #99A46D;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .especialidade-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Procedimentos Section */
        .procedimentos {
            padding: 6rem 0;
            background: #f8fffe;
        }

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

        .procedimento-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .procedimento-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .procedimento-image {
            height: 200px;
            overflow: hidden;
        }

        .procedimento-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .procedimento-card:hover .procedimento-img {
            transform: scale(1.05);
        }

        .procedimento-content {
            padding: 20px 12px;
        }

        .procedimento-content h3 {
            color: #99A46D;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .procedimento-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .saiba-mais-btn {
            background: transparent;
            color: #99A46D;
            border: 2px solid #99A46D;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .saiba-mais-btn:hover {
            background: #99A46D;
            color: white;
        }

        /* Contato Section */
        .contato {
            padding: 6rem 0;
            background: white;
        }

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

        .contato-info h3 {
            color: #99A46D;
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .contato-info p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

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

        .contato-item i {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #99A46D, #41500f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .contato-item span {
            color: #666;
            font-weight: 500;
        }

        .contato-item a {
            color: #666;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contato-item a:hover {
            color: #2c5f5d;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: #25d366;
            color: white;
            padding: 1.2rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-btn i {
            font-size: 1.5rem;
        }

        /* Avaliações - Slider melhorado (ajustado) */
        .avaliacoes {
            padding: 5rem 0;
            background-color: #f7f9f9;
        }

        .avaliacoes-slider {
            position: relative;
            max-width: 800px;
            margin: 3rem auto 0;
            overflow: hidden;
        }

        .avaliacoes-container {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        .avaliacao-card {
            flex: 0 0 100%;
            padding: 2.5rem;
            background: white;
            text-align: center;
            border-radius: 20px;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 4px, rgba(0, 0, 0, 0.1) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
            margin: 0;
            opacity: 0.6;
            transform: scale(0.95);
            transition: all 0.6s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }

        .avaliacao-card.active {
            opacity: 1;
            /*transform: scale(1);*/
            z-index: 2;
        }

        .stars {
            color: #ffd700;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            text-align: center;
            width: 100%;
            display: block;
        }

        .avaliacao-content {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .avaliacao-content p {
            font-size: 1.15rem;
            line-height: 1.7;
            color: #444;
            margin-bottom: 2rem;
            font-style: italic;
            max-width: 600px;
            text-align: center;
            word-break: break-word;
        }

        .avaliacao-autor h4 {
            margin: 0 0 0.3rem 0;
            font-size: 1.1rem;
            font-weight: 600;
            color: #99A46D;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 2rem;
            box-sizing: border-box;
            pointer-events: none; /* allow clicks to pass to buttons only */
        }

        .slider-nav button {
            pointer-events: auto;
            background-color: #99A46D;
            border: none;
            color: white;
            padding: 0.8rem;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            width: 45px;
            height: 45px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .slider-nav button:hover {
            background-color: #7a8a5a;
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .avaliacoes-slider {
                max-width: 100%;
                margin: 1.5rem 0 0;
                padding: 0 12px;
            }
            .avaliacao-card {
                padding: 1.2rem 1rem;
                /*transform: none !important;*/
                opacity: 1;
            }
            .avaliacao-content p {
                font-size: 0.95rem;
                max-width: 100%;
            }
            .slider-nav {
                position: static;
                margin-top: 2rem;
                justify-content: center;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .avaliacao-card {
                padding: 1rem 0.8rem;
            }
            .avaliacao-content p {
                font-size: 0.85rem;
                margin-bottom: 1rem;
            }
            .stars {
                font-size: 1rem;
                margin-bottom: 0.8rem;
            }
        }

        /* Footer */
        .footer {
            background: #434343;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .footer-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .footer-info p {
            color: #b8d4d3;
        }

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

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b8d4d3;
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .whatsapp-float a {
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-float a:hover {
            transform: scale(1.1);
        }

        .whatsapp-float i {
            font-size: 1.8rem;
        }

        /* Animações */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .nav-close {
            display: none;
        }

        /* Responsividade geral */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 0;
                flex-direction: column;
                background-color: white;
                width: 100%;
                height: 100vh;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                z-index: 1001;
                padding: 5rem 0 2rem 0;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu.active::before {
                content: '';
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                /* background: rgba(0, 0, 0, 0.5); */
                z-index: -1;
            }

            .nav-close {
                display: block;
                position: absolute;
                top: 1rem;
                right: 1.5rem;
                font-size: 2rem;
                color: #333;
                cursor: pointer;
            }

            .nav-menu li {
                margin: 0.1rem 0;
            }

            .nav-link {
                font-size: 1.1rem;
                padding: 0.2rem;
                display: block;
                width: 100%;
                transition: all 0.3s ease;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-toggle.active .bar:nth-child(2) {
                opacity: 0;
            }

            .nav-toggle.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .nav-toggle.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .logo-img {
                height: 35px;
            }

            .nav-logo h2 {
                font-size: 1.3rem;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .hero-title {
                font-size: 2rem;
            }

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

            .hero-photo {
                width: 200px;
                height: 200px;
            }

            .hero-photo i {
                font-size: 5rem;
            }

            .section-title {
                font-size: 2rem;
            }

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

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

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

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

            .contato-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .footer-content {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }

            .container {
                padding: 0 1rem;
            }

            .nav {
                padding: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.5rem;
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }

            .whatsapp-btn {
                padding: 1rem 1.5rem;
                font-size: 1rem;
            }

            .procedimento-content {
                padding: 1.5rem;
            }

            .beneficio-card {
                padding: 1.5rem;
            }

            .especialidade-card {
                padding: 2rem 1.5rem;
            }

            .avaliacoes-slider {
                max-width: 100%;
                margin: 1.5rem 5px 0;
                padding: 0;
            }

            .avaliacao-card {
                padding: 1.2rem 0.8rem;
                margin: 0px 0px;
            }

            .avaliacao-content p {
                font-size: 0.85rem;
                max-width: 100%;
                margin-bottom: 1.5rem;
            }

            .stars {
                font-size: 1rem;
                margin-bottom: 1rem;
            }
        }