/* =========================================================================
           CSS DO HEADER E NAVEGAÇÃO 
           (Após testar, recorte esse bloco e jogue dentro do seu style.css externo)
           ========================================================================= */
        :root {
            --azul-medico: #007BFF;
            --azul-escuro: #003366;
            --verde-cta: #28a745;
            --verde-hover: #218838;
            --branco: #FFFFFF;
            --cinza-fundo: #F4F7F6;
            --cinza-texto: #555555;
            --texto-escuro: #222222;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--texto-escuro);
            background-color: var(--branco);
            line-height: 1.6;
        }

        /* --- HEADER PRINCIPAL --- */
        header {
            background-color: var(--branco);
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .logo { 
            font-size: 1.6rem; 
            font-weight: 800; 
            color: var(--azul-escuro); 
            text-decoration: none;
        }
        .logo span { color: var(--azul-medico); }

        /* --- MENU DESKTOP --- */
        .nav-menu {
            display: flex;
            gap: 25px;
            list-style: none;
            align-items: center;
            transition: all 0.3s ease;
        }
        .nav-menu a {
            text-decoration: none;
            color: var(--texto-escuro);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s;
        }
        .nav-menu a:hover { color: var(--azul-medico); }

        /* Botões do Menu */
        .btn-area-cliente {
            background-color: var(--azul-escuro);
            color: var(--branco) !important;
            padding: 8px 18px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .btn-area-cliente:hover { background-color: var(--azul-medico); }
        
        .btn-cta {
            background-color: var(--verde-cta);
            color: var(--branco) !important;
            padding: 10px 24px;
            text-decoration: none;
            font-weight: 700;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .btn-cta:hover { background-color: var(--verde-hover); }

        /* --- ÍCONE HAMBURGUER (Oculto no Desktop) --- */
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--azul-escuro);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        /* --- RESPONSIVIDADE: CELULAR & TABLET --- */
        @media (max-width: 992px) {
            .menu-toggle {
                display: block; /* Mostra o ícone no mobile */
            }

            .nav-menu {
                position: absolute;
                top: 100%; /* Cola logo abaixo do header */
                left: 0;
                width: 100%;
                background-color: var(--branco);
                flex-direction: column;
                align-items: flex-start;
                padding: 0 5%;
                box-shadow: 0 10px 15px rgba(0,0,0,0.05);
                
                /* Efeito gaveta escondido */
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                visibility: hidden;
            }

            /* Classe ativada pelo JavaScript */
            .nav-menu.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
                visibility: visible;
                padding-top: 20px;
                padding-bottom: 20px;
            }

            .nav-menu li {
                width: 100%;
                margin-bottom: 15px;
            }

            .nav-menu a {
                display: block;
                width: 100%;
                padding: 10px 0;
                border-bottom: 1px solid var(--cinza-fundo);
            }

            /* Ajusta os botões para ocuparem a largura toda no celular */
            .btn-area-cliente, .btn-cta {
                text-align: center;
                justify-content: center;
                padding: 15px;
                margin-top: 10px;
                border: none !important;
            }
        }

        /* --- HERO SECTION --- */
        .hero {
            background: linear-gradient(to right, rgba(0, 51, 102, 0.85), rgba(0, 123, 255, 0.7)), url('https://images.unsplash.com/photo-1551076805-e1869043e560?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: var(--branco);
            padding: 140px 5% 100px;
            display: flex;
            align-items: center;
            min-height: 85vh;
        }
        .hero-content {
            max-width: 700px;
        }
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
        }
        .hero p {
            font-size: 1.25rem;
            font-weight: 400;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        /* --- BOTÕES --- */
        .btn-cta {
            background-color: var(--verde-cta);
            color: var(--branco);
            padding: 16px 35px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.25);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn-cta:hover {
            background-color: var(--verde-hover);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
        }

        /* --- PADDINGS E TÍTULOS --- */
        .section-padding { padding: 90px 5%; }
        .bg-cinza { background-color: var(--cinza-fundo); }
        .section-title {
            font-size: 2.5rem;
            color: var(--azul-escuro);
            margin-bottom: 15px;
            font-weight: 800;
            text-align: center;
        }
        .section-subtitle {
            text-align: center;
            color: var(--cinza-texto);
            margin-bottom: 60px;
            font-size: 1.1rem;
            max-width: 800px;
            margin-inline: auto;
        }

        /* --- DOBRA: SOBRE O DR DÁSIO --- */
        .sobre-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .sobre-img-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .sobre-img-container img {
            width: 100%;
            height: auto;
            display: block;
        }
        .badge-experiencia {
            position: absolute;
            bottom: -20px;
            right: 20px;
            background: var(--azul-medico);
            color: #fff;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0,123,255,0.3);
        }
        .badge-experiencia h4 { font-size: 2rem; font-weight: 800; line-height: 1; }
        .badge-experiencia span { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; }
        .sobre-texto h2 { font-size: 2.2rem; color: var(--azul-escuro); margin-bottom: 20px; font-weight: 800; }
        .sobre-texto p { color: var(--cinza-texto); margin-bottom: 20px; font-size: 1.05rem; }
        .valores-lista { list-style: none; margin-top: 30px; }
        .valores-lista li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 600;
            color: var(--texto-escuro);
        }
        .valores-lista i { color: var(--verde-cta); font-size: 1.2rem; }

        /* --- DOBRA: PROCEDIMENTOS --- */
        .grid-procedimentos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .card {
            background: var(--branco);
            border: 1px solid var(--cinza-borda);
            border-radius: 8px;
            padding: 40px 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.06);
            border-color: transparent;
        }
        .card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 4px; height: 100%;
            background-color: var(--azul-medico);
            transform: scaleY(0);
            transition: transform 0.3s ease;
            transform-origin: bottom;
        }
        .card:hover::before { transform: scaleY(1); }
        .card i { font-size: 2.5rem; color: var(--azul-medico); margin-bottom: 25px; display: block; }
        .card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--azul-escuro); font-weight: 700; }
        .card p { color: var(--cinza-texto); font-size: 0.95rem; line-height: 1.6; }

        /* --- DOBRA: CONTATO RÁPIDO (PRÉ-FOOTER) --- */
        .contato-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
            background: var(--branco);
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        .form-container { padding: 50px; }
        .form-group { margin-bottom: 20px; }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--cinza-borda);
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--azul-medico);
        }
        .mapa-container iframe { width: 100%; height: 100%; border: none; min-height: 400px; }

        /* --- MEGA FOOTER --- */
        footer {
            background-color: var(--azul-escuro);
            color: var(--branco);
            padding: 80px 5% 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 40px;
            margin-bottom: 30px;
        }
        .footer-col h3 { font-size: 1.2rem; margin-bottom: 25px; font-weight: 700; color: #fff; }
        .footer-logo { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; display: block; }
        .footer-logo span { color: var(--azul-medico); }
        .footer-text { color: #a0b2c6; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; max-width: 300px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a {
            color: #a0b2c6;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }
        .footer-links a:hover { color: var(--branco); }
        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            color: #a0b2c6;
            font-size: 0.95rem;
        }
        .footer-contact i { color: var(--azul-medico); margin-top: 4px; }
        .social-icons { display: flex; gap: 15px; }
        .social-icons a {
            width: 40px; height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex; align-items: center; justify-content: center;
            color: var(--branco);
            text-decoration: none;
            transition: all 0.3s;
        }
        .social-icons a:hover { background: var(--azul-medico); transform: translateY(-3px); }
        .footer-bottom {
            text-align: center; color: #a0b2c6; font-size: 0.85rem;
            display: flex; justify-content: space-between; max-width: 1200px; margin: 0 auto;
        }
        .footer-bottom a { color: var(--azul-medico); text-decoration: none; font-weight: 600; }

        /* --- WHATSAPP FLUTUANTE --- */
        .whatsapp-float {
            position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
            background-color: #25d366; color: #FFF; border-radius: 50px;
            text-align: center; font-size: 35px; box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
            z-index: 1000; display: flex; align-items: center; justify-content: center;
            text-decoration: none; transition: transform 0.3s ease;
        }
        .whatsapp-float:hover { transform: scale(1.1); }

        @media (max-width: 992px) {
            .sobre-grid, .contato-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .badge-experiencia { bottom: 20px; }
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
        }