/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --primary: #0d9488; /* Teal */
            --primary-dark: #0f766e;
            --secondary: #ccfbf1;
            --text: #334155;
            --white: #ffffff;
            --gray: #f1f5f9;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Open Sans', sans-serif; color: var(--text); line-height: 1.6; background: var(--white); }
        h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; color: var(--primary-dark); }

        /* Utilities */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section { padding: 80px 0; }
        .bg-gray { background: var(--gray); }
        .text-center { text-align: center; }
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
            border: none;
            cursor: pointer;
        }
        .btn:hover { background: var(--primary-dark); transform: translateY(-3px); }
        .btn-white { background: var(--white); color: var(--primary); }
        .btn-white:hover { background: var(--secondary); }

        /* Header */
        header { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
        .nav { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; display: flex; align-items: center; gap: 10px; }
        .nav-links { display: flex; gap: 25px; align-items: center; }
        .nav-links a { color: var(--text); text-decoration: none; font-weight: 600; transition: 0.3s; }
        .nav-links a:hover { color: var(--primary); }
        .mobile-toggle { display: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; }

        /* Hero */
        .hero {
            background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7)), url('../images/d819437785c81f284e457310d7e247c3.jpg');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            position: relative;
        }
        .hero-content { max-width: 600px; }
        .hero h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
        .hero p { font-size: 1.2rem; margin-bottom: 30px; color: #475569; }
        .hero-badges { display: flex; gap: 20px; margin-bottom: 30px; }
        .badge { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--primary-dark); }
        .badge i { color: var(--primary); }

        /* Treatments */
        .treatments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
        .treatment-card { background: var(--white); padding: 30px; border-radius: 15px; text-align: center; transition: 0.3s; border: 1px solid #e2e8f0; }
        .treatment-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: var(--primary); }
        .treatment-icon { width: 70px; height: 70px; background: var(--secondary); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; }
        .treatment-card h3 { margin-bottom: 10px; }

        /* About/Team */
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .about-img img { width: 100%; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .about-text h2 { margin-bottom: 20px; font-size: 2.5rem; }
        .checklist { list-style: none; margin-top: 20px; }
        .checklist li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .checklist i { color: var(--primary); }

        /* Testimonials */
        .testimonials { background: var(--primary); color: var(--white); }
        .testimonials h2 { color: var(--white); text-align: center; margin-bottom: 50px; }
        .review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .review-card { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 15px; backdrop-filter: blur(5px); }
        .stars { color: #fbbf24; margin-bottom: 15px; }
        .review-text { font-style: italic; margin-bottom: 20px; opacity: 0.9; }
        .client { font-weight: 700; }

        /* CTA Strip */
        .cta-strip { background: var(--secondary); padding: 50px 0; text-align: center; }
        .cta-strip h2 { color: var(--primary-dark); margin-bottom: 20px; }

        /* Footer */
        footer { background: var(--primary-dark); color: var(--white); padding: 50px 0; font-size: 0.9rem; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
        .footer-col h4 { color: var(--white); margin-bottom: 20px; }
        .footer-links a { display: block; color: #ccfbf1; text-decoration: none; margin-bottom: 10px; }
        .footer-links a:hover { color: var(--white); }

        /* Floating Button */
        .whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 1000; transition: 0.3s; }
        .whatsapp-float:hover { transform: scale(1.1); }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .about-grid { grid-template-columns: 1fr; }
            .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
            .nav-links.active { display: flex; }
            .mobile-toggle { display: block; }
            .hero { padding: 80px 0; text-align: center; }
            .hero-content { margin: 0 auto; }
            .hero-badges { justify-content: center; }
        }