        :root {
            --primary-green: #12C24E;
            --primary-blue: #2E6FBF;
            --neutral-gray: #7F7F7F;
            --light-green: #9ED63A;
            
            /* Cores complementares */
            --dark-green: #0E9A3C;
            --dark-blue: #1E4F96;
            --light-gray: #F8F9FA;
            --white: #FFFF;
            --text-dark: #2C3E50;
            --text-light: #6C757D;
            
            /* Tipografia */
            --font-primary: 'Montserrat', sans-serif;
            
            /* Sombras */
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
            
            /* Transições */
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-primary);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        /* ==== TIPOGRAFIA ==== */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        h1 { font-size: 2.3rem; }
        h2 { font-size: 1.9rem; }
        h3 { font-size: 1.45rem; }
        h4 { font-size: 1.15rem; }
        
        p {
            margin-bottom: 1rem;
            color: var(--text-light);
        }
        
        /* ==== HEADER / NAVBAR ==== */
        .navbar {
            background: var(--white);
            box-shadow: var(--shadow-sm);
            padding: .2rem 0;
            transition: var(--transition);
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-green) !important;
        }
        
        .navbar-brand span {
            color: var(--primary-blue);
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.8rem;
            transition: var(--transition);
            position: relative;
            font-size: 1.1em;
        }
        
        .nav-link:hover {
            color: var(--primary-green) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary-green);
            transition: var(--transition);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-header {
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            border: none;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }
        
        .btn-header:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            color: var(--white);
        }
        
        #main { margin-top: 100px }
        
        /* ==== SEÇÃO HERO ==== */
        .hero {
            background: linear-gradient(135deg, rgba(14, 154, 60, 0.92) 0%, rgba(30, 79, 150, 0.95) 100%),
                    url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1600') center/cover no-repeat;
            min-height: 100vh;
            padding-top: 120px;
            padding-bottom: 80px;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -5%;
            width: 500px;
            height: 500px;
            background: rgba(255,255,255,0.06);
            border-radius: 50%;
            animation: float 18s infinite ease-in-out;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -15%;
            left: -8%;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.04);
            border-radius: 50%;
            animation: float 24s infinite ease-in-out reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.25);
            padding: 0.45rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: rgba(255,255,255,0.95);
        }
        
        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            line-height: 1.2;
            text-shadow: 0 2px 12px rgba(0,0,0,0.15);
            color: #fff;
        }
        
        .hero .lead {
            font-size: 1.15rem;
            font-weight: 400;
            margin-bottom: 2.5rem;
            color: rgba(255,255,255,0.9);
            line-height: 1.8;
            max-width: 560px;
        }

        .hero-divider {
            width: 60px;
            height: 4px;
            background: rgba(255,255,255,0.5);
            border-radius: 2px;
            margin-bottom: 1.5rem;
        }
        
        .hero-badges {
            display: flex;
            gap: 1.5rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        
        .badge-hero {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.3);
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        
        .btn-primary-custom {
            background: var(--white);
            color: var(--primary-green);
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            color: var(--primary-green);
        }
        
        .btn-secondary-custom {
            background: transparent;
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
            border: 2px solid var(--white);
            transition: var(--transition);
        }
        
        .btn-secondary-custom:hover {
            background: var(--white);
            color: var(--primary-blue);
            transform: translateY(-3px);
        }
        
        /* ==== SEÇÃO DE DIFERENCIAIS ==== */
        .features {
            padding: 5rem 0;
            background: var(--light-gray);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            color: var(--primary-blue);
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary-green);
            border-radius: 2px;
        }
        
        .feature-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            height: 100%;
            border-top: 4px solid transparent;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-top-color: var(--primary-green);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--white);
        }
        
        .feature-card.blue .feature-icon {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
        }
        
        .feature-card h4 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        
        /* ==== SERVIÇOS SST ==== */
        .services-sst {
            padding: 5rem 0;
            background: var(--white);
        }
        
        .service-item {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: var(--white);
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-item::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .service-item:hover::before {
            transform: scale(1.5);
        }
        
        .service-item:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-lg);
        }
        
        .service-item i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }
        
        .service-item h5 {
            font-weight: 700;
            margin-bottom: 0.8rem;
        }
        
        .service-item p {
            color: rgba(255,255,255,0.9);
            margin-bottom: 0;
            font-size: 0.95rem;
        }
        
        /* ==== SERVIÇOS CLÍNICOS ==== */
        .services-clinic {
            padding: 5rem 0;
            background: var(--light-gray);
        }
        
        .clinic-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
        }
        
        .clinic-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .clinic-card-header {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: var(--white);
            padding: 2rem;
            text-align: center;
        }
        
        .clinic-card-header i {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .clinic-card-body {
            padding: 2rem;
        }
        
        .clinic-card-body ul {
            list-style: none;
            padding: 0;
        }
        
        .clinic-card-body ul li {
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            color: var(--text-light);
        }
        
        .clinic-card-body ul li:last-child {
            border-bottom: none;
        }
        
        .clinic-card-body ul li i {
            color: var(--primary-green);
            margin-right: 0.8rem;
        }
        
        /* ==== CONFORMIDADE ESOCIAL ==== */
        .esocial {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .esocial::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }
        
        .esocial-content {
            position: relative;
            z-index: 2;
        }
        
        .esocial h2 {
            color: var(--white);
            margin-bottom: 2rem;
        }
        
        .esocial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .esocial-item {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: var(--transition);
        }
        
        .esocial-item:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }
        
        .esocial-item i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
            color: var(--light-green);
        }
        
        .esocial-item h5 {
            font-weight: 700;
            margin-bottom: 0.8rem;
        }
        
        .esocial-item p {
            color: rgba(255,255,255,0.85);
            margin-bottom: 0;
            font-size: 0.9rem;
        }
        
        /* ==== LOCALIZAÇÃO ==== */
        .location {
            padding: 5rem 0;
            background: var(--white);
        }
        
        .location-content {
            background: var(--light-gray);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: var(--shadow-md);
        }
        
        .location-badge {
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 30px;
            display: inline-block;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-sm);
        }
        
        .location-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .location-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .location-item i {
            font-size: 2rem;
            color: var(--primary-blue);
            width: 50px;
            text-align: center;
        }
        
        .location-item div h5 {
            color: var(--primary-blue);
            margin-bottom: 0.3rem;
        }
        
        .location-item div p {
            margin: 0;
            font-size: 1.1rem;
        }
        
        /* ==== TESTEMUNHOS ==== */
        .testimonials {
            padding: 5rem 0;
            background: var(--light-gray);
        }
        
        .testimonial-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow-md);
            height: 100%;
            position: relative;
            transition: var(--transition);
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        /*
        .testimonial-card::before {
            content: 'f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 3rem;
            color: rgba(30, 158, 73, 0.1);
        }
        */
        
        .testimonial-text {
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .testimonial-author-info h6 {
            margin: 0;
            color: var(--primary-blue);
            font-weight: 700;
        }
        
        .testimonial-author-info p {
            margin: 0;
            font-size: 0.9rem;
        }
        
        .stars {
            color: #FFC107;
            margin-bottom: 1rem;
        }
        
        /* ==== CTA FINAL ==== */
        .cta-final {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            color: var(--white);
            text-align: center;
        }
        
        .cta-final h2 {
            color: var(--white);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-final p {
            color: rgba(255,255,255,0.95);
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-cta-white {
            background: var(--white);
            color: var(--primary-green);
            padding: 1.2rem 3rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.2rem;
            border: none;
            transition: var(--transition);
            box-shadow: var(--shadow-lg);
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-cta-white:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.25);
            color: var(--primary-green);
        }
        
        .btn-cta-outline {
            background: transparent;
            color: var(--white);
            padding: 1.2rem 3rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.2rem;
            border: 3px solid var(--white);
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-cta-outline:hover {
            background: var(--white);
            color: var(--primary-green);
            transform: translateY(-5px);
        }
        
        /* ==== FOOTER ==== */
        footer {
            background: var(--text-dark);
            color: rgba(255,255,255,0.9);
            padding: 3rem 0 1rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h5 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .footer-section p,
        .footer-section ul {
            font-size: 0.95rem;
            line-height: 1.8;
        }
        
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-section ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-section ul li a:hover {
            color: var(--light-green);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .social-links a:hover {
            background: var(--primary-green);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
        }
        .footer-bottom a { color: #FFF; }
        
        /* ==== BOTÃO FLUTUANTE WHATSAPP ==== */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            transition: var(--transition);
            animation: pulse 2s infinite;
            border: none;
            outline: none;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            background: #128C7E;
            color: var(--white);
            text-decoration: none;
        }
        
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            50% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
        }
        
        /* ==== SCHEMA.ORG STRUCTURED DATA ==== */
        /* Implementado via JSON-LD no <script> abaixo */
        
        /* ==== RESPONSIVIDADE ==== */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero .lead {
                font-size: 1.05rem;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .hero-badges {
                justify-content: center;
            }
            
            h1 { font-size: 2.2rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
        }
        
        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding-top: 110px;
                padding-bottom: 70px;
            }
            
            .hero h1 {
                font-size: 1.9rem;
            }
            
            .hero .lead {
                font-size: 1rem;
            }
            
            .hero-cta {
                align-items: center;
            }
            
            .btn-primary-custom,
            .btn-secondary-custom {
                padding: 0.9rem 2rem;
                font-size: 1rem;
                width: 100%;
            }
            
            .esocial-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-cta-white,
            .btn-cta-outline {
                width: 100%;
                max-width: 350px;
            }
            
            .whatsapp-float {
                width: 60px;
                height: 60px;
                bottom: 20px;
                right: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .location-badge {
                font-size: 1rem;
                padding: 0.8rem 1.5rem;
            }
            
            .cta-final h2 {
                font-size: 2rem;
            }
            
            .cta-final p {
                font-size: 1.1rem;
            }
        }
        
        /* ==== ANIMAÇÕES AO SCROLL ==== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        
        
        
        
        
        .slick-prev,.slick-next{background:rgba(0,0,0,0.2);color:rgba(255,255,255,1);font-size:2em;position:absolute;top:calc(50% - 20px);width:40px;height:40px;line-height:40px;z-index:9;text-align:center;display:block;padding:0;border:0;-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%;-webkit-transition:0.5s;-moz-transition:0.5s;-o-transition:0.5s;transition:0.5s}.slick-prev:hover,.slick-next:hover{background:rgba(0,0,0,0.5)}.slick-next{right:0;padding-left:3px}.slick-prev{left:0;padding-right:3px}.slick-dots{position:absolute;width:100%;bottom:-20px;text-align:center;margin:0;padding:0;height:5px}.slick-dots li{background:rgba(0,0,0,0.2);display:inline-block;padding:0;margin:0 6px;list-style:none;-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%}.slick-dots li,.slick-dots li button{width:15px;height:15px;-webkit-transition:0.3s;-moz-transition:0.3s;-o-transition:0.3s;transition:0.3s}.slick-dots li.slick-active,.slick-dots li:hover{background:rgba(0,0,0,0.6)}.slick-dots li button,.slick-dots li button:before{color:transparent;opacity:0}.slider-main .slider-item a, .slider-full .slider-item a { display:block; width: 100%; }.slider-main .slick-dots{bottom:20px}.slider-main .slick-dots li{background:rgba(255,255,255,0.2)}.slider-main .slick-dots li.slick-active,.slider-main .slick-dots li:hover{background:rgba(255,255,255,0.8)}.slider-main .slick-prev,.slider-main .slick-next{background:rgba(255,255,255,0.1);color:rgba(255,255,255,0.5)}.slider-main .slick-prev:hover,.slider-main .slick-next:hover{background:rgba(255,255,255,0.5)}.slick-track{display:flex}.slick-track .slick-slide{display:flex;height:auto}