/* Dr. Andreas Koszka */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
        }

        /* ============ CORES DO DESIGN ============ */
        :root {
            --primary-teal: #1a9b8e;
            --primary-dark: #1a3a47;
            --light-gray: #f5f5f5;
            --white: #ffffff;
            --text-dark: #2c3e50;
        }

        /* ============ HEADER ============ */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .header-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: var(--primary-teal);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-teal);
            transition: width 0.3s ease;
        }

        .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            padding: 1rem 0;
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 999;
            margin-top: 0.5rem;
        }

        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .dropdown-menu a::after {
            display: none;
        }

        .dropdown-menu a:hover {
            background-color: var(--light-gray);
            color: var(--primary-teal);
            padding-left: 2rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--primary-teal);
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .social-links a:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(26, 155, 142, 0.4);
        }

        /* ============ HERO ============ */
        .hero {
            background: url('/uploads/banner-internas-2.webp') right center/cover no-repeat;
            color: var(--white);
            padding: 0 2rem;
            height: 350px;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-content h1 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
            animation: slideInLeft 0.8s ease-out;
        }

        .hero-content p {
            font-size: 1rem;
            color: #d0d8dd;
            margin-bottom: 0;
            line-height: 1.8;
            max-width: 600px;
            animation: slideInLeft 0.8s ease-out 0.2s both;
        }

        /* ============ INTRO SECTION ============ */
        .intro {
            padding: 5rem 2rem;
            background-color: var(--white);
        }

        .intro-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .intro-foto {
            display: flex;
            justify-content: center;
            animation: slideInRight 0.8s ease-out;
        }

        .foto-circular {
            position: relative;
            width: 100%;
            max-width: 380px;
        }

        .foto-circular img {
            width: 100%;
            height: auto;
            display: block;
        }

        .intro-conteudo {
            animation: slideInLeft 0.8s ease-out;
        }

        .intro-conteudo h2 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            line-height: 1.3;
            font-weight: 700;
        }

        .intro-conteudo p {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 1.2rem;
            line-height: 1.8;
            text-align: justify;
        }

        /* ============ TRAJETÓRIA ============ */
        .trajetoria {
            padding: 5rem 2rem;
            background-color: var(--light-gray);
        }

        .trajetoria-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .trajetoria-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .trajetoria-header h2 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .trajetoria-header p {
            font-size: 1rem;
            color: #666;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        .trajetoria-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .trajetoria-bloco {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            animation: slideInUp 0.6s ease-out;
        }

        .trajetoria-bloco:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .trajetoria-bloco h3 {
            font-size: 1.3rem;
            color: var(--primary-teal);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .trajetoria-bloco p {
            font-size: 0.95rem;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 0.8rem;
        }

        .credenciais {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            grid-column: 1 / -1;
        }

        .credenciais h3 {
            font-size: 1.3rem;
            color: var(--primary-teal);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .crm-info {
            background: linear-gradient(135deg, #1a9b8e 0%, #2a5a6e 100%);
            color: var(--white);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: center;
        }

        .formacao-lista {
            list-style: none;
        }

        .formacao-lista li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            font-size: 0.95rem;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .formacao-lista li:last-child {
            border-bottom: none;
        }

        .formacao-lista li::before {
            content: '✓';
            color: var(--primary-teal);
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
            margin-top: -2px;
        }

        /* ============ FILOSOFIA ============ */
        .filosofia {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #1a9b8e 0%, #2a5a6e 100%);
            color: var(--white);
        }

        .filosofia-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .filosofia-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .filosofia-header h2 {
            font-size: 2.2rem;
            color: var(--white);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .filosofia-header p {
            font-size: 1rem;
            color: #d0d8dd;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        .filosofia-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .filosofia-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            animation: slideInUp 0.6s ease-out;
        }

        .filosofia-card:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-4px);
        }

        .filosofia-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--white);
        }

        .filosofia-card p {
            font-size: 0.95rem;
            color: #d0d8dd;
            line-height: 1.8;
        }

        /* ============ COMO É A CONSULTA ============ */
        .como-consulta {
            padding: 5rem 2rem;
            background-color: var(--white);
        }

        .como-consulta-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .como-consulta-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .como-consulta-header h2 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .como-consulta-header p {
            font-size: 1rem;
            color: #666;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        .passos {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        /* ============ CARROSSEL LINEAR CONSULTA ============ */
        .consulta-carrossel { margin-top: 3.5rem; }
        .consulta-trilha-wrap { overflow: hidden; padding-top: 2.5rem; margin-top: -2.5rem; }
        .consulta-trilha { display: flex; gap: 2rem; transition: transform .55s cubic-bezier(.4,0,.2,1); }
        .consulta-etapa { flex: 0 0 calc((100% - 4rem) / 3); position: relative; padding: 2.75rem 1.75rem 2rem; background: var(--white); border-radius: 14px; border: 1px solid #e7ebed; }
        .consulta-etapa::before { content: attr(data-num); position: absolute; top: -.35em; left: 1.25rem; font-size: 6rem; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 2px rgba(26,155,142,.28); pointer-events: none; }
        .consulta-etapa h3 { position: relative; font-size: 1.15rem; color: var(--primary-dark); font-weight: 700; margin-bottom: .9rem; }
        .consulta-etapa p { position: relative; font-size: .93rem; color: var(--text-dark); line-height: 1.8; }
        .consulta-nav { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 2.5rem; }
        .consulta-btn { width: 46px; height: 46px; border-radius: 50%; border: none; background: var(--primary-teal); color: var(--white); font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s ease; }
        .consulta-btn:hover:not(:disabled) { background: var(--primary-dark); transform: translateY(-2px); }
        .consulta-btn:disabled { opacity: .3; cursor: default; }
        .consulta-progresso { display: flex; gap: .5rem; }
        .consulta-dot { width: 32px; height: 3px; border-radius: 2px; background: #d5dcdf; border: none; padding: 0; cursor: pointer; transition: background .3s ease; }
        .consulta-dot.ativo { background: var(--primary-teal); }
        @media (max-width: 900px) { .consulta-etapa { flex: 0 0 calc((100% - 2rem) / 2); } }
        @media (max-width: 600px) { .consulta-etapa { flex: 0 0 100%; } .consulta-etapa::before { font-size: 5rem; } }

        .passo {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-teal);
            animation: slideInUp 0.6s ease-out;
        }

        .passo:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .passo h3 {
            font-size: 1.2rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .passo p {
            font-size: 0.95rem;
            color: var(--text-dark);
            line-height: 1.8;
        }

        /* ============ PUBLICAÇÕES ============ */
        .publicacoes {
            padding: 5rem 2rem;
            background-color: var(--light-gray);
        }

        .publicacoes-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .publicacoes-header h2 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .publicacoes-header p {
            font-size: 1rem;
            color: #666;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 2rem;
        }

        .publicacoes-link {
            display: inline-block;
            background-color: var(--primary-teal);
            color: var(--white);
            padding: 0.85rem 2rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .publicacoes-link:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(26, 58, 71, 0.3);
        }

        /* ============ ONDE ATENDE ============ */
        .onde-atende {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #1a9b8e 0%, #2a5a6e 100%);
            color: var(--white);
        }

        .onde-atende-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .onde-atende-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .onde-atende-header h2 {
            font-size: 2.2rem;
            color: var(--white);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .onde-atende-header p {
            font-size: 1rem;
            color: #d0d8dd;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        .onde-atende-conteudo {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .info-atendimento {
            background: rgba(255, 255, 255, 0.1);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .info-item {
            margin-bottom: 1.5rem;
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .info-item h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .info-item p {
            font-size: 1rem;
            color: #d0d8dd;
            line-height: 1.6;
        }

        .onde-atende-mapa {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        }

        .onde-atende-mapa iframe {
            width: 100%;
            height: 400px;
            border: none;
            display: block;
        }

        /* ============ FOOTER ============ */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 3rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-col-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-logo img {
            height: auto;
            width: 180px;
            margin-bottom: 1rem;
        }

        .footer-instagram {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--primary-teal);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-instagram:hover {
            background-color: var(--white);
            color: var(--primary-teal);
            transform: translateY(-3px);
        }

        .footer-col-info h3,
        .footer-col-responsavel h3,
        .footer-col-menu h3 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-col-info p,
        .footer-col-responsavel p {
            font-size: 0.9rem;
            line-height: 1.8;
            color: #d0d8dd;
            margin-bottom: 1rem;
        }

        .footer-col-info a,
        .footer-col-menu a {
            color: #d0d8dd;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-col-info a:hover,
        .footer-col-menu a:hover {
            color: var(--primary-teal);
        }

        .footer-col-responsavel strong {
            color: var(--white);
            font-weight: 600;
        }

        .footer-col-menu ul {
            list-style: none;
        }

        .footer-col-menu li {
            margin-bottom: 0.8rem;
        }

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

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

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

        .cta-final-botao {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cta-final-botao:hover {
            background-color: var(--primary-teal);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 155, 142, 0.3);
        }

        /* ============ CTA FINAL ============ */
        .cta-final {
            padding: 6rem 2rem;
            text-align: center;
            background-color: var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 350px;
        }

        .cta-final h2 {
            margin-bottom: 2rem;
            color: var(--primary-dark);
            font-size: 2rem;
            font-weight: 700;
        }

        /* ============ DROPDOWN MENU (SYNC) ============ */
        .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        .nav-dropdown > a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-dropdown > a:hover {
            color: var(--primary-teal);
        }

        .nav-dropdown > a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-teal);
            transition: width 0.3s ease;
        }

        .nav-dropdown > a:hover::after {
            width: 100%;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            border: 1px solid #eee;
            border-radius: 8px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            min-width: 250px;
            z-index: 1001;
            padding: 0.5rem 0;
            margin-top: 0.5rem;
            pointer-events: auto !important;
        }

        .nav-dropdown:hover .dropdown-menu {
            display: block !important;
        }

        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .dropdown-menu a:hover {
            background-color: #f5f5f5;
            color: var(--primary-teal);
            padding-left: 2rem;
        }

        /* ============ ELEMENTOS DE TEXTO ============ */
        .frase-destaque { font-size: 1.15rem; font-weight: 600; color: var(--primary-teal); line-height: 1.6; margin: 2rem 0 0; }
        .filosofia .frase-destaque, .filosofia-fecho { color: var(--white); }
        .filosofia-fecho { text-align: center; font-size: 1.15rem; font-weight: 600; margin-top: 3rem; line-height: 1.6; }
        .pergunta-destaque { max-width: 800px; margin: 0 auto; padding: 1.5rem 2rem; border-left: 3px solid rgba(255,255,255,.5); background: rgba(255,255,255,.08); border-radius: 0 10px 10px 0; font-size: 1.1rem; font-style: italic; color: var(--white); line-height: 1.7; }
        .hero-crm { font-size: .85rem; letter-spacing: .06em; color: #a9d9d3; margin-top: .75rem; font-weight: 500; }
        .hero-content h2.hero-sub { font-size: 1.05rem; font-weight: 500; color: #d0d8dd; margin-bottom: 0; }

        /* ============ TRAJETÓRIA NARRATIVA ============ */
        .trajetoria-narrativa { display: grid; grid-template-columns: 400px 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
        .trajetoria-foto { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.1); height: 460px; }
        .trajetoria-texto p { font-size: .98rem; color: var(--text-dark); line-height: 1.85; margin-bottom: 1.1rem; }
        .trajetoria-texto p:last-child { margin-bottom: 0; }

        /* ============ HOSPITAIS ============ */
        .hospitais { padding: 5rem 2rem; background: var(--white); }
        .hospitais-container { max-width: 1000px; margin: 0 auto; text-align: center; }
        .hospitais-container h2 { font-size: 2.2rem; color: var(--primary-dark); font-weight: 700; margin-bottom: 1.5rem; }
        .hospitais-container p { font-size: 1rem; color: var(--text-dark); line-height: 1.85; margin-bottom: 1.2rem; }
        .hospitais-lista { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.5rem; margin-top: 2.5rem; }
        .hospital-logo { background: var(--white); border: 1px solid #e7ebed; border-radius: 12px; padding: 1.75rem 2.25rem; display: flex; align-items: center; justify-content: center; min-height: 120px; transition: all .3s ease; }
        .hospital-logo:hover { box-shadow: 0 8px 20px rgba(0,0,0,.08); transform: translateY(-3px); }
        .hospital-logo img { max-width: 240px; max-height: 72px; width: auto; height: auto; display: block; }
        @media (max-width: 600px) { .hospitais-lista { gap: 1.25rem; } .hospital-logo { padding: 1.25rem 1.5rem; min-height: 100px; } .hospital-logo img { max-width: 190px; max-height: 60px; } }

        /* ============ FECHAMENTO ============ */
        .fechamento { padding: 6rem 2rem; background: var(--light-gray); }
        .fechamento-container { max-width: 820px; margin: 0 auto; text-align: center; }
        .fechamento-container h2 { font-size: 2.2rem; color: var(--primary-dark); font-weight: 700; margin-bottom: 1.5rem; line-height: 1.3; }
        .fechamento-container p { font-size: 1rem; color: var(--text-dark); line-height: 1.85; margin-bottom: 1.2rem; }
        .fechamento-frase { font-size: 1.2rem; font-weight: 600; color: var(--primary-teal); margin: 2rem 0 2.5rem; }
        .fechamento-tel { display: block; margin-top: 1rem; font-size: .95rem; color: var(--text-dark); }
        .fechamento-tel a { color: var(--primary-teal); text-decoration: none; font-weight: 600; }
        .fechamento-tel a:hover { text-decoration: underline; }
        a { color: var(--primary-teal); }
        a:hover { color: var(--primary-dark); }
        @media (max-width: 900px) { .trajetoria-narrativa { grid-template-columns: 1fr; } .trajetoria-foto { height: 380px; max-width: 420px; margin: 0 auto; } }

        /* ============ ANIMAÇÕES ============ */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }

            nav {
                flex-wrap: wrap;
                gap: 1rem;
                justify-content: center;
            }

            nav a {
                font-size: 0.85rem;
            }

            .social-links {
                gap: 0.75rem;
            }

            .social-links a {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }

            .hero {
                background: url('/uploads/banner-internas-2.webp') right center/cover no-repeat;
                height: 280px;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 0.9rem;
            }

            .intro-container,
            .trajetoria-grid,
            .filosofia-grid,
            .passos {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .credenciais {
                grid-column: 1;
            }

            .intro-conteudo h2,
            .trajetoria-header h2,
            .filosofia-header h2,
            .como-consulta-header h2,
            .publicacoes-header h2,
            .onde-atende-header h2 {
                font-size: 1.8rem;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
                margin-bottom: 1.5rem;
            }

            .footer-col-logo {
                grid-column: 1 / -1;
            }

            .footer-logo img {
                height: auto;
                width: 150px;
                margin-bottom: 0.8rem;
            }

            .footer-col-info h3,
            .footer-col-responsavel h3,
            .footer-col-menu h3 {
                font-size: 0.9rem;
            }

            .footer-col-info p,
            .footer-col-info a,
            .footer-col-responsavel p,
            .footer-col-menu a {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 0.75rem;
            }

            nav {
                gap: 0.75rem;
            }

            nav a {
                font-size: 0.75rem;
            }

            .social-links {
                gap: 0.5rem;
            }

            .social-links a {
                width: 28px;
                height: 28px;
            }

            .hero {
                background: url('/uploads/banner-internas-2.webp') right center/cover no-repeat;
                height: 220px;
                padding: 0 1rem;
            }

            .hero-content h1 {
                font-size: 1.5rem;
            }

            .hero-content p {
                font-size: 0.85rem;
            }

            .intro-conteudo h2,
            .trajetoria-header h2,
            .filosofia-header h2,
            .como-consulta-header h2,
            .publicacoes-header h2,
            .onde-atende-header h2 {
                font-size: 1.5rem;
            }

            .intro,
            .trajetoria,
            .filosofia,
            .como-consulta,
            .publicacoes,
            .onde-atende {
                padding: 2rem 1rem;
            }

            .onde-atende-conteudo {
                grid-template-columns: 1fr;
            }

            .onde-atende-mapa {
                order: 1;
            }

            .info-atendimento {
                order: 2;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .footer-col-logo {
                grid-column: 1;
            }

            .footer-logo img {
                height: auto;
                width: 120px;
                margin-bottom: 0.6rem;
            }

            .footer-col-info h3,
            .footer-col-responsavel h3,
            .footer-col-menu h3 {
                font-size: 0.85rem;
                margin-bottom: 0.8rem;
            }

            .footer-col-info p,
            .footer-col-responsavel p,
            .footer-col-menu li {
                font-size: 0.8rem;
                margin-bottom: 0.6rem;
            }

            .footer-bottom {
                font-size: 0.75rem;
                padding-top: 1.5rem;
            }
        }
    
        /* Animação de flutuação */
        @keyframes float {
            0%   { transform: translateY(0px); }
            50%  { transform: translateY(-12px); }
            100% { transform: translateY(0px); }
        }

        .dr-float {
            animation: float 4s ease-in-out infinite;
            will-change: transform;
        }

        
        @media (max-width: 768px) {
            .hero {
                background: url('/uploads/banner-mobile-internas.webp') center/cover no-repeat !important;
                height: 280px;
            }
            .hero-content h1 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero {
                height: 220px;
                padding: 0 1rem;
            }
            .hero-content h1 {
                font-size: 1.2rem;
            }
        }
