/* Dentariis - Styles.css - CSS Completo Otimizado */

/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    overflow-x: hidden;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    will-change: opacity;
    -webkit-font-feature-settings: "kern" 1;
    font-feature-settings: "kern" 1;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
}

body.loaded {
    opacity: 1;
}
        
        :root {
            --primary-color: #0098da;
            --primary-dark: #0080b8;
            --primary-light: #57c0f1;
            --secondary-color: #E6B94A;
            --secondary-dark: #D4A934;
            --secondary-light: #F4CD6D;
            --dark-color: #222831;
            --light-color: #f8f9fa;
            --gray-color: #393e46;
            --accent-gradient: linear-gradient(135deg, #D4A934 0%, #E6B94A 50%, #F4CD6D 100%);
            --gold-gradient: linear-gradient(135deg,
                    rgba(212, 169, 52, 0.95) 0%,
                    rgba(230, 185, 74, 1) 50%,
                    rgba(244, 205, 109, 0.95) 100%);
            --gold-soft-gradient: linear-gradient(135deg,
                    rgba(212, 169, 52, 0.85) 0%,
                    rgba(230, 185, 74, 0.95) 50%,
                    rgba(244, 205, 109, 0.85) 100%);
            --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            --dark-gradient: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-color) 100%);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
            --gold-shadow: 0 4px 15px rgba(230, 185, 74, 0.3);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --font-title: 'Outfit', sans-serif;
            --font-body: 'Poppins', sans-serif;
            --header-height: 80px;
            --curve-height: 200px;
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-height);
            overflow-x: hidden;
            text-rendering: optimizeSpeed;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            color: var(--dark-color);
            line-height: 1.6;
            background-color: var(--light-color);
            overflow-x: hidden;
            opacity: 0;
            transition: opacity 0.5s ease;
            will-change: opacity;
            -webkit-font-feature-settings: "kern" 1;
            font-feature-settings: "kern" 1;
            -webkit-overflow-scrolling: touch;
            -webkit-tap-highlight-color: transparent;
        }

        body.loaded {
            opacity: 1;
        }

        /* Progresso de Scroll */
        .progress-container {
            position: fixed;
            top: 0;
            z-index: 100;
            width: 100%;
            height: 5px;
            background: transparent;
        }

        .progress-bar {
            height: 5px;
            background: var(--accent-gradient);
            width: 0%;
            border-radius: 0 5px 5px 0;
            box-shadow: 0 1px 5px rgba(223, 196, 115, 0.5);
            transition: width 0.1s ease;
        }

        /* Estilos de texto */
        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: var(--font-title);
            line-height: 1.3;
            font-weight: 700;
        }

        /* Utilitários */
        .text-center {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .text-center .btn {
            margin: 0 auto;
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        h2:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 4px;
            background: var(--accent-gradient);
            border-radius: 2px;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        /* Layout e Container */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 5;
        }

        section {
            position: relative;
            padding: 100px 0;
            overflow: hidden;
        }

        /* Separador curvo */
        .curve-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 1;
            margin-bottom: -1px;
        }

        .curve-divider.top {
            top: 0;
            bottom: auto;
            transform: rotate(180deg);
            margin-top: -1px;
        }

        .rotate-y-180 {
            transform: rotateY(180deg);
        }

        /* Cores de fundo das seções */
        .bg-light {
            background-color: var(--light-color);
            color: var(--dark-color);
        }

        .bg-primary {
            background: var(--primary-gradient);
            color: white;
        }

        .bg-secondary {
            background: var(--accent-gradient);
            color: var(--dark-color);
        }

        .bg-dark {
            background: var(--dark-gradient);
            color: white;
        }

        .bg-pattern {
            background-color: var(--light-color);
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230098da' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        /* Botões e interações */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            font-family: var(--font-title);
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            z-index: -1;
            transform: translateX(-100%);
            transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .btn:hover:before {
            transform: translateX(0);
        }

        .btn-primary {
            background: var(--primary-gradient);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }

        .btn-secondary {
            background: var(--gold-soft-gradient);
            color: var(--dark-color);
            box-shadow: var(--gold-shadow);
        }

        .btn-secondary:hover {
            box-shadow: 0 6px 20px rgba(230, 185, 74, 0.4);
            transform: translateY(-3px);
            background: var(--gold-gradient);
        }

        .btn-secondary::before {
            background: rgba(255, 255, 255, 0.2);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
        }

        .btn-whatsapp {
            background: #44C052;
            color: #F4F4F4;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

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

        .btn-large {
            padding: 15px 35px;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }

        .btn-small {
            padding: 8px 20px;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
            width: auto !important;
            max-width: 200px;
            white-space: nowrap;
            text-align: center;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        @media (max-width: 768px) {
            .btn-small {
                padding: 6px 16px;
                font-size: 0.85rem;
                max-width: 180px;
            }
        }

        @media (max-width: 480px) {
            .btn-small {
                padding: 5px 14px;
                font-size: 0.8rem;
                max-width: 160px;
            }
        }

        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: auto;
            justify-content: center;
        }

        .benefit-card .btn-group {
            margin-top: auto;
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .benefit-card {
                min-height: 280px;
            }
            
            .benefit-content {
                padding: 15px 20px 25px;
            }
            
            .benefit-card .btn-group {
                padding-top: 15px;
            }
        }

        @media (max-width: 480px) {
            .benefit-card {
                min-height: 260px;
            }
            
            .benefit-content {
                padding: 12px 15px 20px;
            }
            
            .benefit-card .btn-group {
                padding-top: 12px;
            }
        }

        /* Header e Navegação */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            height: var(--header-height);
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-phone-icon {
            display: inline-block;
            width: 24px;
            height: 24px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222831' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            margin-right: 8px;
        }

        .header-phone {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--dark-color);
            font-size: 1.1rem;
            font-weight: 500;
        }

        .header-phone span:not(.header-phone-icon) {
            color: var(--dark-color);
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .header-phone-icon {
                width: 20px;
                height: 20px;
            }
        }

        .header-phone:hover .header-phone-icon {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }

        .header-phone span {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .header-phone:hover {
            color: var(--primary-color);
        }

        .header-phone-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--primary-gradient);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .header-phone span {
                display: none;
            }

            .header-right {
                gap: 10px;
            }

            .header-phone-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            height: 100%;
        }

        .logo img {
            max-height: 180px;
            width: auto;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        header.scrolled .logo img {
            max-height: 150px;
        }

        @media (max-width: 768px) {
            .logo img {
                max-height: 150px;
            }

            header.scrolled .logo img {
                max-height: 120px;
            }
        }

        @media (max-width: 576px) {
            .logo img {
                max-height: 120px;
            }

            header.scrolled .logo img {
                max-height: 105px;
            }
        }

        .logo-icon {
            margin-right: 10px;
            color: var(--primary-color);
            position: relative;
        }

        .logo-highlight {
            color: var(--primary-color);
            position: relative;
        }

        .logo-highlight::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: var(--secondary-color);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .logo:hover .logo-highlight::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--light-color);
            padding: 120px 0 180px;
            overflow: hidden;
            position: relative;
        }

        @media (max-width: 992px) {
            .hero {
                padding: 120px 0 80px;
                min-height: auto;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 100px 0 60px;
                text-align: center;
                height: 1156px;
                display: block;
            }
        }

        .hero-content {
            max-width: 550px;
            position: relative;
            z-index: 5;
        }

        .hero-title {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .hero-title .highlight {
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 5px;
            width: 100%;
            height: 12px;
            background: var(--secondary-color);
            opacity: 0.3;
            z-index: -1;
            transform: skewX(-10deg);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: var(--gray-color);
        }

        .hero-price-tag {
            display: inline-block;
            background: var(--gold-soft-gradient);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 2rem;
            box-shadow: var(--gold-shadow);
            /* transform: rotate(-2deg); */
            animation: pulse 2s infinite;
            color: var(--dark-color);
        }

        .hero-image-wrapper {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 50%;
            height: 100%;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image {
            position: relative;
            width: 100%;
            max-width: 600px;
            z-index: 2;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s ease;
        }

        .hero-image:hover img {
            transform: perspective(1000px) rotateY(0);
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 80%;
            height: 80%;
            border: 3px solid var(--primary-color);
            border-radius: var(--radius-lg);
            z-index: -1;
            opacity: 0.3;
        }

        .hero-image::after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 80%;
            height: 80%;
            background: var(--accent-gradient);
            border-radius: var(--radius-lg);
            z-index: -1;
            opacity: 0.2;
        }

        .hero-decorations {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            pointer-events: none;
        }

        .hero-decoration {
            position: absolute;
            border-radius: 50%;
            background: var(--primary-color);
            opacity: 0.05;
            animation: float 6s infinite alternate ease-in-out;
        }

        .hero-decoration:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -100px;
            animation-duration: 7s;
        }

        .hero-decoration:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: -100px;
            right: 20%;
            animation-delay: 1s;
            animation-duration: 8s;
        }

        .hero-decoration:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 30%;
            right: 5%;
            background: var(--secondary-color);
            animation-delay: 2s;
            animation-duration: 6s;
        }

        /* Floating teeth */
        .floating-teeth {
            position: absolute;
            font-size: 2rem;
            opacity: 0.2;
            animation: float 5s infinite alternate ease-in-out;
            z-index: 1;
        }

        .tooth-1 {
            top: 20%;
            left: 10%;
            animation-duration: 7s;
        }

        .tooth-2 {
            top: 70%;
            left: 85%;
            animation-delay: 1s;
            animation-duration: 8s;
            font-size: 2.5rem;
        }

        .tooth-3 {
            top: 60%;
            left: 20%;
            animation-delay: 2s;
            animation-duration: 6s;
            font-size: 1.8rem;
        }

        /* Contador */
        .countdown-timer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px 0;
            background: var(--gold-soft-gradient);
            text-align: center;
            font-weight: 600;
            z-index: 5;
            overflow: hidden;
            color: var(--dark-color);
        }

        .countdown-timer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shine 3s infinite;
        }

        .countdown-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }

        .countdown-label {
            margin-right: 10px;
            font-weight: bold;
        }

        .countdown-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0 8px;
        }

        .countdown-value {
            background: white;
            color: var(--dark-color);
            padding: 5px 10px;
            border-radius: var(--radius-sm);
            font-size: 1.1rem;
            min-width: 40px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }

        .countdown-value.flip {
            animation: flip 0.5s ease-in-out;
        }

        .countdown-text {
            font-size: 0.8rem;
            margin-top: 2px;
        }

        /* Benefícios */
        .benefits {
            position: relative;
            padding: 100px 0;
            margin-top: -8%;
            height: 1213px;
        }

        .benefits-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .benefits-heading h2 {
            display: inline-block;
        }

        .benefits-heading h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        @media (max-width: 1024px) {
            .benefits-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }

        /* Grid específico para serviços - idêntico ao benefits-grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }

        .benefit-card {
            background: white;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            display: flex;
            flex-direction: column;
            height: 100%;
            contain: layout style paint;
            will-change: transform, opacity;
            -webkit-transform: translateY(30px);
            -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
        }

        .benefit-card.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .benefit-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
            will-change: transform;
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: var(--gold-soft-gradient);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 30px auto 20px;
            position: relative;
            z-index: 1;
            transform: rotate(-5deg);
            transition: all 0.3s ease;
            color: var(--dark-color);
            box-shadow: var(--gold-shadow);
        }

        .benefit-card:hover .benefit-icon {
            transform: rotate(0) scale(1.1);
        }

        .benefit-content {
            padding: 20px 25px 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .benefit-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .benefit-description {
            color: var(--gray-color);
            font-size: 0.95rem;
            margin-bottom: 20px;
            flex: 1;
        }

        /* Antes e Depois */
        .before-after {
            position: relative;
            padding: 120px 0;
            background: var(--primary-color);
            color: white;
            margin-top: -1px;
            margin-top: -8%;
            height: 1213px;
        }

        .before-after-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .before-after-heading h2::after {
            background: var(--accent-gradient);
            left: 50%;
            transform: translateX(-50%);
        }

        .comparison-slider {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .comparison-container {
            position: relative;
            width: 100%;
            padding-top: 66.67%;
            /* Proporção 3:2 */
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin: 40px 0 20px 0;
        }

        .comparison-photo {
            width: 100%;
            height: 294px;
            /* object-fit: cover; */
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            background: #fff;
            transition: transform 0.2s;
        }

        .comparison-photo:hover {
            transform: scale(1.04);
        }

        .comparison-before,
        .comparison-after {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .comparison-before {
            z-index: 1;
            width: 50%;
            overflow: hidden;
        }

        .comparison-after {
            z-index: 0;
        }

        .comparison-before img,
        .comparison-after img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
            max-width: none;
        }

        .comparison-before img {
            left: 0;
            width: calc(100% * (100 / 50));
            /* Ajusta a largura baseado no container */
            transform-origin: left;
        }

        .comparison-slider-handle {
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 100%;
            background: white;
            z-index: 2;
            cursor: ew-resize;
            transform: translateX(-50%);
        }

        .comparison-slider-handle::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            box-shadow: var(--shadow-md);
        }

        .comparison-slider-handle::after {
            content: '⟷';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.2rem;
            color: var(--primary-color);
            font-weight: bold;
        }

        .comparison-label {
            position: absolute;
            top: 20px;
            font-size: 1.2rem;
            color: white;
            background: rgba(0, 0, 0, 0.5);
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            z-index: 2;
            pointer-events: none;
        }

        .label-before {
            left: 20px;
        }

        .label-after {
            right: 20px;
        }

        @media (max-width: 768px) {
            .comparison-container {
                padding-top: 75%;
                /* Proporção 4:3 para mobile */
            }
        }

        .comparison-text {
            text-align: center;
            margin-top: 40px;
        }

        .comparison-text p {
            background: rgba(255, 255, 255, 0.95);
            padding: 15px 25px;
            border-radius: var(--radius-md);
            display: inline-block;
            margin: 20px auto;
            box-shadow: var(--shadow-md);
            color: var(--dark-color);
            font-weight: 500;
            font-size: 1.1rem;
            text-align: center;
            max-width: 90%;
            border: 2px solid var(--primary-color);
        }

        @media (max-width: 768px) {
            .comparison-text p {
                font-size: 0.95rem;
                padding: 12px 20px;
                margin: 15px auto;
                width: 85%;
            }
        }

        .affordable-highlight {
            display: inline-block;
            background: var(--gold-soft-gradient);
            color: var(--dark-color);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            margin: 20px 0;
            box-shadow: var(--gold-shadow);
            transform: rotate(-2deg);
        }

        /* Scroll horizontal para mobile na seção de resultados */
        @media (max-width: 768px) {
            .comparison-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 15px;
                padding: 0 20px;
                margin: 40px -20px 20px -20px;
                scrollbar-width: none;
                /* Firefox */
                -ms-overflow-style: none;
                /* IE and Edge */
                position: relative;
            }

            .comparison-grid::-webkit-scrollbar {
                display: none;
                /* Chrome, Safari and Opera */
            }

            .comparison-photo {
                flex: 0 0 calc(50% - 7.5px);
                min-width: calc(50% - 7.5px);
                height: 200px;
                scroll-snap-align: start;
                border-radius: 8px;
                transition: transform 0.3s ease;
            }

            .comparison-photo:active {
                transform: scale(0.95);
            }

            /* Indicadores de scroll */
            .comparison-grid::after {
                content: '';
                flex: 0 0 20px;
                min-width: 20px;
            }

            /* Adiciona padding para compensar o scroll */
            .before-after .container {
                overflow: hidden;
            }

            /* Indicador de scroll horizontal */
            .comparison-grid::before {
                content: '← Deslize para ver mais →';
                position: absolute;
                top: -30px;
                left: 50%;
                transform: translateX(-50%);
                background: rgba(255, 255, 255, 0.9);
                color: var(--primary-color);
                padding: 8px 16px;
                border-radius: 20px;
                font-size: 0.85rem;
                font-weight: 500;
                white-space: nowrap;
                z-index: 10;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            }

            /* Gradiente nas bordas para indicar scroll */
            .comparison-grid::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 30px;
                height: 100%;
                background: linear-gradient(to right, transparent, rgba(0, 152, 218, 0.1));
                pointer-events: none;
                z-index: 5;
            }
        }

        @media (max-width: 480px) {
            .comparison-photo {
                flex: 0 0 calc(50% - 7.5px);
                min-width: calc(50% - 7.5px);
                height: 180px;
            }

            .comparison-grid::before {
                font-size: 0.8rem;
                padding: 6px 12px;
                top: -25px;
            }
        }

        /* Tratamentos */
        .treatments {
            position: relative;
            padding: 120px 0;
        }

        /* Serviços */
        .services {
            position: relative;
            padding: 120px 0;
            overflow: visible;
            z-index: 5;
        }

        @media (max-width: 768px) {
            .services {
                padding: 80px 0;
                overflow: visible;
                min-height: auto;
            }

            .services .text-center {
                display: block !important;
                margin-top: 30px !important;
                position: relative;
                z-index: 10;
                width: 100%;
            }

            .services .btn {
                display: inline-flex !important;
                width: 100%;
                text-align: center;
                justify-content: center;
                position: relative;
                z-index: 10;
                margin: 0 auto;
            }

            /* Garantir que o botão seja sempre visível */
            .services .btn-whatsapp {
                display: inline-flex !important;
                visibility: visible !important;
                opacity: 1 !important;
            }
        }

        .treatments-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .treatments-heading h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .treatments-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            position: relative;
        }

        .tab-button {
            background: transparent;
            border: none;
            padding: 12px 25px;
            font-family: var(--font-title);
            font-weight: 600;
            font-size: 1rem;
            color: var(--gray-color);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .tab-button.active {
            color: var(--primary-color);
        }

        .tab-button::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--primary-gradient);
            transition: width 0.3s ease;
            border-radius: 3px;
        }

        .tab-button.active::after {
            width: 80%;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease forwards;
        }

        .tab-content.active {
            display: block;
        }

        .treatment-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            margin-bottom: 40px;
            position: relative;
        }

        .treatment-header {
            background: var(--primary-gradient);
            padding: 25px 30px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .treatment-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            transition: all 0.5s ease;
        }

        .treatment-card:hover .treatment-header::before {
            left: 100%;
        }

        .treatment-title {
            font-size: 1.5rem;
            position: relative;
            z-index: 1;
            margin: 0;
        }

        .treatment-body {
            padding: 30px;
        }

        .treatment-steps {
            counter-reset: step-counter;
            list-style-type: none;
            padding: 0;
            margin: 0;
        }

        .treatment-step {
            display: flex;
            margin-bottom: 25px;
            position: relative;
        }

        .step-number {
            flex: 0 0 35px;
            width: 35px;
            height: 35px;
            background: var(--gold-soft-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
            counter-increment: step-counter;
            color: var(--dark-color);
            box-shadow: var(--gold-shadow);
        }

        .step-number::before {
            content: counter(step-counter);
        }

        .step-content {
            flex: 1;
        }

        .step-title {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .treatment-highlight {
            background: var(--gold-soft-gradient);
            padding: 15px 20px;
            border-radius: var(--radius-md);
            margin-top: 20px;
            font-weight: 600;
            position: relative;
            overflow: hidden;
            color: var(--dark-color);
            box-shadow: var(--gold-shadow);
        }

        .treatment-highlight::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(45deg);
            z-index: 1;
            transition: all 0.8s ease;
        }

        .treatment-card:hover .treatment-highlight::before {
            left: 100%;
        }

        /* Depoimentos */
        .testimonials {
            position: relative;
            padding: 120px 0;
            background: var(--primary-color);
            color: white;
            margin-top: -1px;
            margin-top: -8%;
            height: 1213px;
        }

        .testimonials-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonials-heading h2::after {
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-gradient);
        }

        .testimonials-slider {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            flex: 0 0 100%;
            min-width: 100%;
            padding: 0 20px;
        }

        .testimonial-card {
            background: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            padding: 40px;
            position: relative;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            perspective: 1000px;
            color: var(--dark-color);
        }

        .testimonial-card:hover {
            transform: translateY(-10px) rotateX(5deg);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 30px;
            left: 30px;
            font-size: 120px;
            line-height: 60px;
            font-family: Georgia, serif;
            color: var(--primary-color);
            opacity: 0.1;
            z-index: 0;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            font-style: italic;
            color: var(--gray-color);
            margin-bottom: 30px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            background: #f0f0f0;
        }

        .testimonial-card:hover .author-image {
            transform: scale(1.1);
            box-shadow: var(--shadow-md);
        }

        .author-info h4 {
            margin: 0 0 5px;
            color: var(--dark-color);
            font-size: 1.2rem;
            font-weight: 600;
        }

        .author-info p {
            margin: 0;
            color: var(--gray-color);
            font-size: 0.9rem;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 15px;
        }

        .testimonial-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: none;
            box-shadow: var(--shadow-sm);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .testimonial-button:hover {
            background: var(--primary-color);
            color: white;
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 8px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            padding: 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: white;
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .testimonial-card {
                padding: 30px 20px;
            }

            .testimonial-text {
                font-size: 1rem;
            }

            .author-image {
                width: 50px;
                height: 50px;
            }

            .author-info h4 {
                font-size: 1.1rem;
            }
        }

        /* FAQ */
        .faq {
            position: relative;
            padding: 120px 0;
            background: var(--bg-pattern);
            margin-top: -13%;
            height: 830px;
        }

        .faq-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-heading h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

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

        .faq-item {
            margin-bottom: 20px;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .faq-item.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-question {
            padding: 20px 50px 20px 25px;
            background: white;
            font-weight: 600;
            color: var(--dark-color);
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary-color);
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .faq-question.active {
            background: var(--primary-gradient);
            color: white;
        }

        .faq-question.active::after {
            content: '−';
            color: white;
            transform: translateY(-50%) rotate(180deg);
        }

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

        .faq-answer-content {
            padding: 20px 25px;
            color: var(--gray-color);
        }

        /* CTA */
        .cta {
            position: relative;
            padding: 100px 0;
            background: var(--primary-gradient);
            color: white;
            overflow: hidden;
        }

        .cta-decoration {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            z-index: 1;
        }

        .cta-decoration:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -50px;
        }

        .cta-decoration:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -50px;
        }

        .cta-container {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-heading {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-badge {
            display: inline-block;
            background: white;
            color: var(--dark-color);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 30px;
            box-shadow: var(--shadow-sm);
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Mapa e localização */
        .location {
            position: relative;
            padding: 120px 0;
        }

        .location-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .location-heading h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .location-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
        }

        .location-info {
            background: white;
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-md);
        }

        .location-icon {
            width: 60px;
            height: 60px;
            background: var(--gold-soft-gradient);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--dark-color);
            box-shadow: var(--gold-shadow);
        }

        .location-title {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .location-address {
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .location-hours {
            margin-bottom: 30px;
        }

        .location-hours strong {
            display: block;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .location-map {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            height: 100%;
            min-height: 400px;
            position: relative;
        }

        .map-marker {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -100%);
            width: 30px;
            height: 30px;
            z-index: 10;
            pointer-events: none;
        }

        .map-marker::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--primary-color);
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: var(--shadow-sm);
        }

        .map-marker::after {
            content: '';
            position: absolute;
            top: 18px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 15px solid var(--primary-color);
        }

        /* Footer */
        .footer {
            background: var(--dark-gradient);
            color: white;
            padding: 80px 0 30px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary-gradient);
        }

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

        .footer-logo {
            font-family: var(--font-title);
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-logo img {
            max-height: 100px;
            width: auto;
            object-fit: contain;
        }

        .footer-logo span {
            color: var(--primary-color);
        }

        .footer-about p {
            color: #bbb;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-heading {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            display: inline-block;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 15px;
        }

        .footer-links a::before {
            content: '›';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-payment-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }

        .payment-method {
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-sm);
            padding: 8px 15px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: #999;
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--primary-color);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

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

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .social-link:hover::before {
            opacity: 1;
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-sm);
        }

        /* WhatsApp Flutuante */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            animation: pulse 2s infinite;
            padding: 12px;
        }

        .whatsapp-float img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .whatsapp-float:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
        }

        /* Balão de Conversa WhatsApp */
        @keyframes floating {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-8px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .whatsapp-bubble {
            position: fixed;
            bottom: 110px;
            right: 30px;
            background: #DCF8C6;
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
            max-width: 280px;
            z-index: 9999;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.3s ease;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            visibility: hidden;
        }

        /* Rabinho do balão */
        .whatsapp-bubble::before {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 14px;
            width: 20px;
            height: 20px;
            background: #DCF8C6;
            transform: rotate(45deg);
            border-radius: 2px;
            box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
        }

        .whatsapp-bubble.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            animation: floating 3s ease-in-out infinite;
        }

        .whatsapp-bubble p {
            margin: 0;
            color: #303030;
            font-size: 14px;
            line-height: 1.4;
            position: relative;
        }

        .whatsapp-bubble .time {
            font-size: 11px;
            color: #667781;
            text-align: right;
            margin-top: 5px;
            display: block;
        }

        .whatsapp-bubble .status {
            display: inline-block;
            vertical-align: middle;
            margin-left: 3px;
        }

        /* Responsividade do balão */
        @media (max-width: 768px) {
            .whatsapp-bubble {
                bottom: 90px;
                right: 20px;
                max-width: 240px;
                padding: 12px 16px;
            }

            .whatsapp-bubble::before {
                right: 12px;
            }

            .whatsapp-bubble p {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .whatsapp-bubble {
                bottom: 80px;
                right: 15px;
                max-width: 200px;
                padding: 10px 14px;
            }

            .whatsapp-bubble::before {
                right: 10px;
            }

            .whatsapp-bubble p {
                font-size: 12px;
            }
        }

        /* Animações */
        @keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0);
            }
        }

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

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        @keyframes shine {
            0% {
                left: -100%;
            }

            100% {
                left: 150%;
            }
        }

        @keyframes flip {
            0% {
                transform: rotateX(0);
                opacity: 1;
            }

            50% {
                transform: rotateX(90deg);
                opacity: 0.5;
            }

            100% {
                transform: rotateX(0);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Media Queries */
        @media (max-width: 1200px) {
            :root {
                --curve-height: 150px;
            }

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

            .hero-image-wrapper {
                width: 45%;
            }
        }

        @media (max-width: 992px) {
            :root {
                --curve-height: 100px;
            }

            h1 {
                font-size: 2.8rem;
            }

            h2 {
                font-size: 2.2rem;
            }

            .hero {
                padding: 120px 0 80px;
                min-height: auto;
            }

            .hero-image-wrapper {
                position: relative;
                width: 100%;
                transform: none;
                top: auto;
                margin-top: 50px;
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
            }

            .hero-title .highlight::after {
                left: 0;
            }

            .hero-title,
            .hero-content h2 {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-title::after,
            .hero-content h2::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .btn-group {
                justify-content: center;
            }

            .location-container {
                grid-template-columns: 1fr;
            }

            .location-map {
                min-height: 300px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --curve-height: 80px;
                --header-height: 70px;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            h3 {
                font-size: 1.3rem;
            }

            .container {
                padding: 0 15px;
            }

            section {
                padding: 60px 0;
            }

            .hero {
                padding: 100px 0 60px;
                text-align: center;
                height: 1016px;
            }

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

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

            .hero-image-wrapper {
                margin-top: 30px;
            }

            .btn-group {
                flex-direction: column;
                gap: 10px;
            }

            .btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }

            .countdown-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
            }

            .countdown-label {
                width: 100%;
                text-align: center;
                margin-bottom: 5px;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .benefit-card {
                padding: 15px;
            }

            .benefit-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                margin: 15px auto 10px;
            }

            .benefit-content {
                padding: 10px;
            }

            .benefit-title {
                font-size: 1rem;
                margin-bottom: 8px;
            }

            .benefit-description {
                font-size: 0.85rem;
                line-height: 1.4;
            }

            .comparison-container {
                height: 300px;
            }

            .comparison-label {
                font-size: 1rem;
                padding: 5px 12px;
            }

            .treatments-tabs {
                flex-direction: column;
                gap: 10px;
            }

            .tab-button {
                width: 100%;
                text-align: center;
                border-radius: var(--radius-sm);
                background: rgba(0, 0, 0, 0.05);
            }

            .tab-button.active {
                background: var(--primary-color);
                color: white;
            }

            .treatment-card {
                margin-bottom: 20px;
            }

            .treatment-header {
                padding: 20px;
            }

            .treatment-body {
                padding: 20px;
            }

            .testimonial-card {
                padding: 25px 20px;
            }

            .testimonial-text {
                font-size: 1rem;
            }

            .location-container {
                gap: 30px;
            }

            .location-info {
                padding: 30px 20px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .footer-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .social-links {
                justify-content: center;
            }

            .footer-links a::before {
                display: none;
            }

            .footer-payment-methods {
                justify-content: center;
            }

            .whatsapp-float {
                width: 54px;
                /* Aumentado em 20% de 45px */
                height: 54px;
                /* Aumentado em 20% de 45px */
                font-size: 1.5rem;
                bottom: 15px;
                right: 15px;
            }

            .header-phone span {
                display: block !important;
                font-size: 14px;
            }

            .header-right .btn-whatsapp {
                display: none;
            }

            .header-right {
                gap: 10px;
            }

            .header-phone-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            :root {
                --curve-height: 60px;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            h3 {
                font-size: 1.3rem;
            }

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

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

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

            .btn-large {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .countdown-label {
                display: block;
                margin-bottom: 10px;
                text-align: center;
                width: 100%;
            }

            .tab-button {
                padding: 10px 15px;
                font-size: 0.9rem;
            }

            .testimonial-card {
                padding: 30px 20px;
            }

            .comparison-container {
                height: 350px;
            }
        }

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

            .countdown-unit {
                margin: 0 5px;
            }

            .countdown-value {
                font-size: 1rem;
                min-width: 35px;
                padding: 4px 8px;
            }

            .countdown-text {
                font-size: 0.75rem;
            }
        }

        .whatsapp-icon {
            width: 20px;
            height: 20px;
            margin-right: 8px;
            vertical-align: middle;
        }

        .btn-small .whatsapp-icon {
            width: 16px;
            height: 16px;
            margin-right: 6px;
        }

        @media (max-width: 768px) {
            .btn-small .whatsapp-icon {
                width: 14px;
                height: 14px;
                margin-right: 5px;
            }
        }

        @media (max-width: 480px) {
            .btn-small .whatsapp-icon {
                width: 12px;
                height: 12px;
                margin-right: 4px;
            }
        }

        /* Nossa Estrutura */
        .estrutura {
            height: 1300px;
            margin-top: -3%;
            position: relative;
            padding: 10px 0;
            background: var(--light-color);
        }

        .estrutura-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .estrutura-heading h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .estrutura-slider {
            position: relative;
            max-width: 1000px;
            margin: 0 auto 20px;
            /* Adicionado margin-bottom */
            overflow: hidden;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
        }

        .estrutura-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .estrutura-slide {
            flex: 0 0 100%;
            min-width: 100%;
            position: relative;
            aspect-ratio: 16/9;
        }

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

        .estrutura-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 2;
        }

        .estrutura-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            padding: 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .estrutura-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .estrutura-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.8);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
            z-index: 2;
        }

        .estrutura-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .estrutura-prev {
            left: 20px;
        }

        .estrutura-next {
            right: 20px;
        }

        .estrutura-slide::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
            z-index: 1;
        }

        .estrutura-caption {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            text-align: center;
            z-index: 2;
            width: 90%;
            font-weight: 500;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 768px) {
            .estrutura {
                padding: 60px 0;
            }

            .estrutura-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .estrutura-prev {
                left: 10px;
            }

            .estrutura-next {
                right: 10px;
            }

            .estrutura-caption {
                bottom: 50px;
                font-size: 0.9rem;
            }
        }

        /* Adicionar ao CSS existente */
        .estrutura-thumbnails {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 20px;
            padding: 0 20px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-color) #f0f0f0;
        }

        .estrutura-thumbnails::-webkit-scrollbar {
            height: 6px;
        }

        .estrutura-thumbnails::-webkit-scrollbar-track {
            background: #f0f0f0;
            border-radius: 10px;
        }

        .estrutura-thumbnails::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 10px;
        }

        .estrutura-thumb {
            flex: 0 0 120px;
            height: 80px;
            border-radius: var(--radius-md);
            overflow: hidden;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            opacity: 0.6;
            border: 2px solid transparent;
        }

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

        .estrutura-thumb.active {
            opacity: 1;
            border-color: var(--primary-color);
            transform: scale(1.05);
        }

        .estrutura-thumb:hover {
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .estrutura-thumbnails {
                gap: 8px;
                padding: 0 15px;
            }

            .estrutura-thumb {
                flex: 0 0 100px;
                height: 70px;
            }
        }

        /* Indicador de Usuários Online */
        .online-users-indicator {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            padding: 12px 20px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 999;
            font-size: 14px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 152, 218, 0.1);
            animation: slideInRight 0.3s ease;
            transform: translateX(120%);
            opacity: 0;
        }

        .online-users-indicator.show {
            transform: translateX(0);
            opacity: 1;
        }

        .online-users-indicator .pulse {
            width: 8px;
            height: 8px;
            background-color: #4CAF50;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .online-users-count {
            color: var(--primary-color);
            font-weight: 600;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(120%);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* Ajuste da posição do WhatsApp para dar espaço ao indicador */
        .whatsapp-float {
            bottom: 40px;
        }

        @media (max-width: 768px) {
            .online-users-indicator {
                bottom: 15px;
                right: 15px;
                padding: 10px 15px;
                font-size: 12px;
            }

            .whatsapp-float {
                bottom: 30px;
                right: 15px;
            }
        }

        /* Notificação de Agendamento */
        .booking-notification {
            position: fixed;
            top: 90px;
            right: 20px;
            background: white;
            padding: 15px 20px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 999;
            max-width: 350px;
            transform: translateX(120%);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .booking-notification.show {
            transform: translateX(0);
            opacity: 1;
        }

        .booking-notification .icon {
            width: 40px;
            height: 40px;
            background: var(--gold-soft-gradient);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .booking-notification .icon img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .booking-notification .notification-content {
            flex: 1;
        }

        .booking-notification h4 {
            margin: 0 0 5px;
            color: var(--primary-color);
            font-size: 16px;
        }

        .booking-notification p {
            margin: 0;
            font-size: 14px;
            color: var(--gray-color);
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-120%);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .online-users-indicator {
                bottom: 18px;
                left: 10px;
                padding: 10px 15px;
                font-size: 12px;
            }

            .booking-notification {
                top: 80px;
                right: 10px;
                left: 10px;
                max-width: none;
                padding: 12px 15px;
            }

            .booking-notification .icon {
                width: 32px;
                height: 32px;
            }

            .booking-notification .icon img {
                width: 20px;
                height: 20px;
            }

            .booking-notification h4 {
                font-size: 14px;
            }

            .booking-notification p {
                font-size: 12px;
            }
        }

        /* Menu de Opções WhatsApp */
        .whatsapp-menu {
            position: fixed;
            padding: 10px;
            bottom: 110px;
            right: 30px;
            background: linear-gradient(180deg, #0098DA 40%, #F3F3F3 60%);
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            max-width: 300px;
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow: hidden;
        }

        .whatsapp-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .whatsapp-menu-header {
            background: #DCF8C6;
            padding: 15px 20px;
            border-radius: 15px;
            color: rgb(12, 12, 12);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .whatsapp-menu-header .avatar {
            width: 40px;
            height: 40px;
            background: #ccc;
            border-radius: 50%;
            overflow: hidden;
            margin-top: 0;
            flex-shrink: 0;
        }

        .whatsapp-menu-header .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .whatsapp-menu-header .info {
            flex: 1;
            padding: 0;
        }

        .whatsapp-menu-header p {
            margin: 0;
            line-height: 1.4;
        }

        .whatsapp-menu-header .time {
            font-size: 12px;
            color: #667781;
            margin-top: 4px;
        }

        .whatsapp-menu-options {
            padding: 10px 0;
            background-color: #f3f3f3;
            border-radius: 15px;
            margin-top: 6px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .whatsapp-menu-title {
            padding: 10px 20px;
            color: #666;
            font-size: 14px;
            font-weight: 500;
            border-bottom: 1px solid #eee;
        }

        .whatsapp-menu-item {
            padding: 12px 20px;
            color: #303030;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.2s ease;
            display: block;
            text-decoration: none;
        }

        .whatsapp-menu-item:hover {
            background: #f5f5f5;
        }

        /* Ajuste da posição para mobile */
        @media (max-width: 768px) {
            .whatsapp-menu {
                bottom: 90px;
                right: 20px;
                max-width: 260px;
            }
        }

        @media (max-width: 480px) {
            .whatsapp-menu {
                bottom: 80px;
                right: 15px;
                max-width: 240px;
            }
        }

        /* Balão de Conversa WhatsApp */
        .scroll-indicator {
            display: none;
            margin-top: 20px;
            text-align: center;
        }

        @media (max-width: 768px) {
            .scroll-indicator {
                display: block;
            }

            .scroll-dots {
                display: flex;
                justify-content: center;
                gap: 8px;
                margin-bottom: 10px;
            }

            .scroll-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.3);
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .scroll-dot.active {
                background: white;
                transform: scale(1.2);
            }

            .scroll-progress {
                width: 100%;
                height: 3px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 2px;
                overflow: hidden;
                position: relative;
            }

            .scroll-progress::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                background: white;
                border-radius: 2px;
                transition: width 0.3s ease;
                width: var(--scroll-progress, 0%);
            }
        }

        /* CSS específico para garantir que o botão da seção de serviços seja visível no mobile */
        @media (max-width: 768px) {
            section.services {
                padding: 80px 0 !important;
                overflow: visible !important;
                min-height: auto !important;
                height: 1700px;
            }

            section.services .text-center {
                display: block !important;
                margin-top: 30px !important;
                position: relative !important;
                z-index: 999 !important;
                width: 100% !important;
            }

            section.services .btn-whatsapp {
                display: inline-flex !important;
                visibility: visible !important;
                opacity: 1 !important;
                position: relative !important;
                z-index: 999 !important;
                width: 100% !important;
                text-align: center !important;
                justify-content: center !important;
                margin: 0 auto !important;
            }

            /* Sobrescrever qualquer regra que possa estar escondendo o botão */
            section.services .text-center .btn-whatsapp {
                display: inline-flex !important;
                visibility: visible !important;
                opacity: 1 !important;
                position: relative !important;
                z-index: 999 !important;
            }

            /* Regra mais específica para garantir visibilidade */
            #services .text-center .btn-whatsapp {
                display: inline-flex !important;
                visibility: visible !important;
                opacity: 1 !important;
                position: relative !important;
                z-index: 999 !important;
                width: 100% !important;
                text-align: center !important;
                justify-content: center !important;
                margin: 0 auto !important;
            }

            /* Sobrescrever regras para botões pequenos */
            .btn-small {
                width: auto !important;
                max-width: 200px !important;
            }

            @media (max-width: 768px) {
                .btn-small {
                    max-width: 180px !important;
                }
            }

            @media (max-width: 480px) {
                .btn-small {
                    max-width: 160px !important;
                }
            }
        }

        @media (max-width: 768px) {
            .benefits {
                height: 1060px !important;
                min-height: unset !important;
                padding-top: 40px;
                padding-bottom: 40px;
            }

            .before-after {
                height: 661px !important;
                min-height: unset !important;
                padding-top: 40px;
                padding-bottom: 40px;
            }

            .testimonials {
                height: 995px !important;
                min-height: unset !important;
                padding-top: 40px;
                padding-bottom: 40px;
            }

            .faq {
                height: auto !important;
                min-height: unset !important;
                padding-top: 40px;
                padding-bottom: 40px;
            }

            .estrutura {
                height: 603px !important;
                min-height: unset !important;
                padding-top: 40px;
                padding-bottom: 40px;
                margin-top: 29%;
            }
        }
