        /* CSS RESET & VARIABLES */
        :root {
            --primary: #00695C;
            --primary-light: #00897B;
            --secondary: #6D1F3A;
            --secondary-light: #8A2B4C;
            --bg-light: #F7F7F7;
            --bg-white: #FFFFFF;
            --text-dark: #2C3E50;
            --text-muted: #666666;
            --font-title: 'Playfair Display', serif;
            --font-body: 'Montserrat', sans-serif;
            --shadow-premium: 0 15px 35px rgba(0,0,0,0.05);
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: var(--bg-white);
            line-height: 1.7;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
            height: auto;
        }

        a {
            text-transform: none;
            text-decoration: none;
            color: inherit;
        }

        /* UTILITIES & REUSABLE COMPONENTS */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-padding {
            padding: 100px 0;
        }

        .text-center { text-align: center; }

        .section-header {
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .section-header h2 {
            font-family: var(--font-title);
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            cursor: pointer;
            gap: 10px;
            border: none;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--bg-white);
            box-shadow: 0 4px 15px rgba(0, 105, 92, 0.2);
        }

        .btn-primary:hover, .btn-primary:focus {
            background-color: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 105, 92, 0.3);
        }

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

        .btn-secondary:hover, .btn-secondary:focus {
            background-color: var(--primary);
            color: var(--bg-white);
            transform: translateY(-3px);
        }

        /* HEADER & NAVIGATION */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.03);
            transition: var(--transition);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 90px;
        }

        .logo-img {
            width: 200px;
            height: auto;
            display: block;
        }

        .nav-menu {
            display: flex;
            gap: 20px;
            list-style: none;
        }

        .nav-link {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-dark);
            transition: var(--transition);
            position: relative;
            padding: 8px 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: var(--transition);
        }

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

        .nav-link:hover {
            color: var(--secondary);
        }

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

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
            background: none;
            border: none;
        }

        /* HERO SECTION */
        .hero {
            padding-top: 160px;
            padding-bottom: 100px;
            background: linear-gradient(135deg, #f4fcfb 0%, #fff6f8 100%);
            overflow: hidden;
            position: relative;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content h1 {
            font-family: var(--font-title);
            font-size: 3.2rem;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-subheadline {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--secondary);
            margin-bottom: 24px;
        }

        .hero-text {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-image-wrapper {
            position: relative;
        }

        .hero-image {
            border-radius: 30px 100px 30px 30px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.08);
            object-fit: cover;
            width: 100%;
            height: 500px;
        }

        /* SOBRE A CLINICA */
        .sobre {
            background-color: var(--bg-white);
        }

        .sobre-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }

        .sobre-images {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            position: relative;
        }

        .sobre-img-1 {
            border-radius: 20px;
            width: 65%;
            box-shadow: var(--shadow-premium);
        }

        .sobre-img-2 {
            border-radius: 20px;
            width: 35%;
            box-shadow: var(--shadow-premium);
        }

        .sobre-content p {
            margin-bottom: 20px;
            color: var(--text-muted);
        }

        /* SOBRE O PROFISSIONAL */
        .profissional {
            background-color: var(--bg-light);
        }

        .prof-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 60px;
            align-items: center;
        }

        .prof-image-container {
            position: relative;
        }

        .prof-image {
            border-radius: 24px;
            box-shadow: var(--shadow-premium);
            width: 100%;
            max-height: 550px;
            object-fit: cover;
        }

        .prof-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background-color: var(--secondary);
            color: var(--bg-white);
            padding: 20px 30px;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(109, 31, 58, 0.2);
            text-align: center;
        }

        .prof-badge strong {
            font-size: 1.1rem;
            font-family: var(--font-body);
            display: block;
        }

        .prof-content h3 {
            font-family: var(--font-title);
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .prof-subtitle {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 24px;
            display: block;
        }

        .prof-text {
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        .specialties-box {
            background-color: var(--bg-white);
            padding: 35px;
            border-radius: 20px;
            box-shadow: var(--shadow-premium);
            border-left: 5px solid var(--primary);
        }

        .specialties-box h4 {
            font-size: 1.15rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .specialties-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            list-style: none;
        }

        .specialties-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.05rem;
            color: var(--text-dark);
            font-weight: 500;
        }

        .specialties-list i {
            color: var(--primary);
            font-size: 1.1rem;
        }

        /* COMO A TERAPIA AJUDA */
        .ajuda-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .ajuda-card {
            background-color: var(--bg-white);
            padding: 35px 24px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-premium);
            border: 1px solid rgba(0,0,0,0.02);
            transition: var(--transition);
        }

        .ajuda-card:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 105, 92, 0.15);
            box-shadow: 0 20px 40px rgba(0, 105, 92, 0.05);
        }

        .ajuda-icon {
            width: 65px;
            height: 65px;
            background-color: rgba(0, 105, 92, 0.06);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            font-size: 1.5rem;
            transition: var(--transition);
        }

        .ajuda-card:hover .ajuda-icon {
            background-color: var(--primary);
            color: var(--bg-white);
        }

        .ajuda-card h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .ajuda-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* SERVICOS */
        .servicos {
            background-color: var(--bg-light);
        }

        .servicos-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .servico-card {
            background-color: var(--bg-white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-premium);
            display: flex;
            flex-direction: column;
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.01);
        }

        .servico-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.08);
        }

        .servico-img-wrapper {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .servico-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .servico-card:hover .servico-img {
            transform: scale(1.08);
        }

        .servico-content {
            padding: 28px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .servico-content h3 {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 12px;
            font-family: var(--font-body);
            font-weight: 600;
        }

        .servico-content p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 24px;
            flex-grow: 1;
            line-height: 1.6;
        }

        .servico-btn {
            width: 100%;
            padding: 12px;
            font-size: 0.85rem;
            background-color: var(--bg-light);
            color: var(--text-dark);
            border-radius: 12px;
        }

        .servico-card:hover .servico-btn {
            background-color: var(--secondary);
            color: var(--bg-white);
        }

        /* REGIOES DE ATENDIMENTO */
        .regioes {
            background-color: var(--bg-white);
        }

        .regioes .section-header .highlight-badge {
            display: inline-block;
            background-color: rgba(109, 31, 58, 0.1);
            color: var(--secondary);
            padding: 6px 18px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-top: 15px;
            border: 1px solid rgba(109, 31, 58, 0.2);
        }

        .regioes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .regiao-card {
            background-color: var(--bg-light);
            padding: 25px;
            border-radius: 16px;
            border-top: 4px solid var(--primary);
            box-shadow: var(--shadow-premium);
            transition: var(--transition);
        }

        .regiao-card:hover {
            transform: translateY(-5px);
            background-color: var(--bg-white);
            box-shadow: 0 15px 30px rgba(0, 105, 92, 0.08);
        }

        .regiao-card h3 {
            font-size: 1.1rem;
            color: var(--primary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .regiao-card h3 i {
            color: var(--secondary);
            font-size: 0.9rem;
        }

        .regiao-card p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* DIFERENCIAIS */
        .diferenciais {
            background-color: var(--bg-light);
        }

        .diferenciais-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .diferencial-card {
            display: flex;
            gap: 20px;
            background: var(--bg-white);
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-premium);
            transition: var(--transition);
        }

        .diferencial-card:hover {
            transform: translateY(-5px);
        }

        .diferencial-icon {
            font-size: 1.8rem;
            color: var(--secondary);
            flex-shrink: 0;
        }

        .diferencial-info h3 {
            font-size: 1.15rem;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .diferencial-info p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* MISSAO */
        .missao {
            background-color: var(--secondary);
            color: var(--bg-white);
            position: relative;
            overflow: hidden;
        }

        .missao-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .missao-icon {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: rgba(255,255,255,0.4);
        }

        .missao h2 {
            font-family: var(--font-title);
            font-size: 2.6rem;
            margin-bottom: 24px;
            font-style: italic;
        }

        .missao p {
            font-size: 1.25rem;
            font-weight: 400;
            line-height: 1.8;
            opacity: 0.95;
        }

        /* COUNTERS */
        .counters {
            background-color: var(--primary);
            color: var(--bg-white);
            padding: 60px 0;
        }

        .counters-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .counter-item h3 {
            font-family: var(--font-title);
            font-size: 3rem;
            margin-bottom: 5px;
        }

        .counter-item p {
            font-size: 0.9rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* DEPOIMENTOS */
        .depoimentos {
            background-color: var(--bg-light);
            overflow: hidden;
        }

        .slider-container {
            max-width: 850px;
            margin: 0 auto;
            position: relative;
            padding: 20px 0;
        }

        .slider-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .slide {
            min-width: 100%;
            box-sizing: border-box;
            padding: 0 10px;
        }

        .depoimento-card {
            background-color: var(--bg-white);
            padding: 50px;
            border-radius: 24px;
            box-shadow: var(--shadow-premium);
            text-align: center;
            position: relative;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .depoimento-stars {
            color: #FFD700;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .depoimento-text {
            font-size: 1.05rem;
            color: var(--text-dark);
            font-style: italic;
            margin-bottom: 25px;
            line-height: 1.8;
            max-width: 700px;
        }

        .depoimento-author {
            font-weight: 600;
            color: var(--primary);
            font-size: 1rem;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
            margin-bottom: 40px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #DDD;
            cursor: pointer;
            transition: var(--transition);
        }

        .dot.active {
            background-color: var(--primary);
            width: 24px;
            border-radius: 5px;
        }

        .feedback-btn-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 10px;
        }

        .btn-feedback-more {
            background-color: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
            font-weight: 600;
        }

        .btn-feedback-more:hover {
            background-color: var(--secondary);
            color: var(--bg-white);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(109, 31, 58, 0.15);
        }

        /* FAQ ACCORDION */
        .faq {
            background-color: var(--bg-white);
        }

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

        .faq-item {
            background-color: var(--bg-white);
            margin-bottom: 16px;
            border-radius: 16px;
            box-shadow: var(--shadow-premium);
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.01);
        }

        .faq-trigger {
            width: 100%;
            padding: 24px 30px;
            background: none;
            border: none;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-dark);
            cursor: pointer;
            font-family: var(--font-body);
            transition: var(--transition);
        }

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

        .faq-icon {
            font-size: 1.1rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            background-color: rgba(247, 247, 247, 0.5);
        }

        .faq-content p {
            padding: 0 30px 24px 30px;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            color: var(--secondary);
        }

        .faq-item.active .faq-trigger {
            color: var(--primary);
        }

        /* LOCALIZACAO */
        .localizacao {
            background-color: var(--bg-light);
        }

        .local-grid {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 50px;
            align-items: center;
        }

        .local-info {
            background-color: var(--bg-white);
            padding: 40px;
            border-radius: 24px;
            box-shadow: var(--shadow-premium);
        }

        .local-info h3 {
            font-family: var(--font-title);
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 24px;
        }

        .local-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .local-item {
            display: flex;
            gap: 16px;
        }

        .local-item i {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-top: 4px;
        }

        .local-item h4 {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .local-item p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .map-container {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-premium);
            height: 450px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* CTA FINAL */
        .cta-final {
            background: linear-gradient(rgba(0, 105, 92, 0.9), rgba(0, 105, 92, 0.95)), url('https://images.unsplash.com/photo-1516302752625-fbc4c407f3b0?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--bg-white);
            text-align: center;
            padding: 120px 0;
        }

        .cta-max {
            max-width: 750px;
            margin: 0 auto;
        }

        .cta-final h2 {
            font-family: var(--font-title);
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .cta-final p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-final .btn-primary {
            background-color: var(--secondary);
            box-shadow: 0 4px 15px rgba(109, 31, 58, 0.3);
        }

        .cta-final .btn-primary:hover {
            background-color: var(--secondary-light);
            box-shadow: 0 8px 25px rgba(109, 31, 58, 0.5);
        }

        /* FOOTER */
        .footer {
            background-color: #1A252F;
            color: rgba(255,255,255,0.7);
            padding: 80px 0 30px 0;
            font-size: 0.9rem;
            border-top: 4px solid var(--secondary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 1fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-brand h3 {
            font-family: var(--font-title);
            font-size: 1.8rem;
            color: var(--bg-white);
            margin-bottom: 20px;
        }

        .footer-brand p {
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-white);
            transition: var(--transition);
        }

        .social-icon:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links h4, .footer-contact h4 {
            color: var(--bg-white);
            font-size: 1.1rem;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 8px;
        }

        .footer-links h4::after, .footer-contact h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-links-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links-list a {
            transition: var(--transition);
        }

        .footer-links-list a:hover {
            color: var(--bg-white);
            padding-left: 5px;
        }

        .footer-contact-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-contact-list i {
            color: var(--primary-light);
            margin-top: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 30px;
            text-align: center;
            font-size: 0.8rem;
        }

        /* FLOATING WHATSAPP */
        .whatsapp-floating {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: var(--bg-white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            z-index: 999;
            animation: pulse-wa 2s infinite;
            transition: var(--transition);
        }

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

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

        /* CORE SCROLL REVEAL EFFECT ENGINE */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* RESPONSIVENESS (BREAKPOINTS) */
        @media (max-width: 1200px) {
            .regioes-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1100px) {
            .servicos-grid, .ajuda-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .diferenciais-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 900px) {
            .hero-grid, .sobre-grid, .prof-grid, .local-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .sobre-images {
                flex-direction: row;
            }
            .hero { padding-top: 130px; text-align: center; }
            .hero-buttons { justify-content: center; }
            .hero-image { height: 380px; order: -1; }
            .sobre-images { order: 2; }
            .counters-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            
            /* Mobile Nav Logic */
            .menu-toggle { display: block; }
            .nav-menu {
                position: absolute;
                top: 90px;
                left: -100%;
                width: 100%;
                background-color: var(--bg-white);
                flex-direction: column;
                padding: 40px 24px;
                box-shadow: 0 20px 30px rgba(0,0,0,0.05);
                transition: var(--transition);
                gap: 20px;
            }
            .nav-menu.open { left: 0; }
            .nav-container .btn { display: none; }
        }

        @media (max-width: 600px) {
            html { font-size: 14px; }
            .servicos-grid, .ajuda-grid, .diferenciais-grid, .counters-grid, .regioes-grid {
                grid-template-columns: 1fr;
            }
            .hero-content h1 { font-size: 2.3rem; }
            .depoimento-card { padding: 30px 20px; min-height: 380px; }
            .specialties-list { grid-template-columns: 1fr; }
        }

/* ===== EXTRA STYLES: MULTI-PAGE (BREADCRUMB, REGIONS INDEX, SUBPAGES) ===== */
.breadcrumb-bar {
    background-color: var(--bg-light);
    padding: 130px 0 20px 0;
}
.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.breadcrumb-list li a { color: var(--primary); font-weight: 500; }
.breadcrumb-list li a:hover { text-decoration: underline; }
.breadcrumb-list li:not(:last-child)::after { content: '/'; margin-left: 8px; color: #ccc; }

.page-hero {
    padding: 40px 0 80px 0;
    background: linear-gradient(135deg, #f4fcfb 0%, #fff6f8 100%);
}
.page-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}
.page-hero-content .eyebrow {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 14px;
}
.page-hero-content h1 {
    font-family: var(--font-title);
    font-size: 2.6rem;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 20px;
}
.page-hero-content p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 18px; }
.page-hero-image { border-radius: 30px 100px 30px 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.08); object-fit: cover; width: 100%; height: 420px; }

.content-block { padding: 20px 0; }
.content-block h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 18px;
}
.content-block h3 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    color: var(--secondary);
    margin: 26px 0 10px 0;
}
.content-block p { color: var(--text-muted); margin-bottom: 16px; }
.content-narrow { max-width: 800px; }

.mini-servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0 10px 0;
}
.mini-servico-card {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}
.mini-servico-card:hover { transform: translateY(-5px); }
.mini-servico-card i { font-size: 1.6rem; color: var(--primary); margin-bottom: 10px; }
.mini-servico-card h4 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 6px; }
.mini-servico-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

.regioes-index-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.regiao-index-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-premium);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}
.regiao-index-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.regiao-index-card h3 { color: var(--primary); font-size: 1.1rem; margin-bottom: 8px; }
.regiao-index-card h3 i { margin-right: 8px; }
.regiao-index-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 14px; }
.regiao-index-card a { color: var(--secondary); font-weight: 600; font-size: 0.85rem; }
.regiao-index-card a i { margin-left: 6px; transition: var(--transition); }
.regiao-index-card a:hover i { transform: translateX(4px); }

.internal-links-box {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    margin-top: 20px;
}
.internal-links-box h3 { color: var(--primary); margin-bottom: 18px; font-family: var(--font-title); font-size: 1.3rem; }
.internal-links-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    list-style: none;
}
.internal-links-list a {
    font-size: 0.88rem;
    color: var(--text-dark);
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.internal-links-list a:hover { color: var(--primary); padding-left: 4px; }
.internal-links-list a i { color: var(--secondary); font-size: 0.75rem; }

.footer-links-list.footer-regions {
    columns: 1;
}

.footer-grid-4col {
    grid-template-columns: 1.1fr 0.8fr 0.9fr 0.9fr !important;
}
.footer-grid-5col {
    grid-template-columns: 1.1fr 0.75fr 0.85fr 0.85fr 0.85fr !important;
}

@media (max-width: 900px) {
    .footer-grid-4col, .footer-grid-5col { grid-template-columns: 1fr !important; }
    .page-hero-grid { grid-template-columns: 1fr; }
    .page-hero-image { height: 300px; order: -1; }
    .mini-servicos-grid { grid-template-columns: repeat(2, 1fr); }
    .regioes-index-grid { grid-template-columns: 1fr; }
    .internal-links-list { grid-template-columns: repeat(2, 1fr); }
}
