/* CSS RESET E VARIÁVEIS */
        :root {
            --sage: #5D6F54;
            --dark-sage: #44503E;
            --bg-light: #FBF9F6;
            --bg-soft: #EAE4DA;
            --white: #FFFFFF;
            --text-dark: #2F352E;
            --text-muted: #626A5F;
            --font-title: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --shadow: 0 10px 30px rgba(68, 80, 62, 0.05);
            --google-yellow: #F4B400;
        }

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

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

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

        /* TIPOGRAFIA GLOBAL */
        h1, h2, h3, h4 {
            font-family: var(--font-title);
            color: var(--dark-sage);
            font-weight: 600;
        }

        p {
            font-weight: 300;
            color: var(--text-muted);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        /* Links inline dentro de parágrafos de conteúdo - reutilizável em qualquer bloco de texto do site */
        .specialty-text a,
        .hero-description a,
        .about-text a {
            color: var(--sage);
            text-decoration: underline;
            text-underline-offset: 3px;
            font-weight: 500;
        }

        .specialty-text a:hover,
        .hero-description a:hover,
        .about-text a:hover {
            color: var(--dark-sage);
        }

        /* BOTÕES & ACESSIBILIDADE */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.2rem;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            cursor: pointer;
            gap: 10px;
            letter-spacing: 0.3px;
        }

        .btn-primary {
            background-color: var(--sage);
            color: var(--white);
            border: 1px solid var(--sage);
        }

        .btn-primary:hover {
            background-color: var(--dark-sage);
            border-color: var(--dark-sage);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(68, 80, 62, 0.2);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--dark-sage);
            border: 1px solid var(--sage);
        }

        .btn-secondary:hover {
            background-color: var(--bg-soft);
            transform: translateY(-2px);
        }

        .btn-whatsapp {
            background-color: #4A634E;
            color: var(--white);
            border: none;
        }

        .btn-whatsapp:hover {
            background-color: #384A3B;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(56, 74, 59, 0.2);
        }

        /* HEADER FIXO ORIGINAL */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(251, 249, 246, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            z-index: 1000;
            transition: var(--transition);
        }

        .header.scrolled {
            padding: 0.5rem 0;
        }

        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            flex-direction: column;
        }

        .logo .title {
            font-family: var(--font-title);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark-sage);
            line-height: 1.2;
        }

        .logo .subtitle {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            list-style: none;
        }

        .nav-link {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text-dark);
            position: relative;
            padding: 0.5rem 0;
        }

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

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

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

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

        /* SUBMENU DE ESPECIALIDADES (desktop: dropdown / mobile: lista aninhada) */
        .nav-item-dropdown {
            position: relative;
        }

        .nav-caret {
            font-size: 0.65rem;
            margin-left: 4px;
            transition: transform 0.25s ease;
        }

        .nav-submenu {
            list-style: none;
        }

        @media (min-width: 769px) {
            .nav-submenu {
                position: absolute;
                top: 100%;
                left: 0;
                min-width: 260px;
                background-color: var(--white);
                border-radius: 12px;
                box-shadow: var(--shadow);
                padding: 10px;
                opacity: 0;
                visibility: hidden;
                transform: translateY(8px);
                transition: var(--transition);
                z-index: 10;
            }

            .nav-item-dropdown:hover .nav-submenu,
            .nav-item-dropdown:focus-within .nav-submenu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .nav-item-dropdown:hover .nav-caret,
            .nav-item-dropdown:focus-within .nav-caret {
                transform: rotate(180deg);
            }

            .nav-sublink {
                display: block;
                padding: 10px 14px;
                border-radius: 8px;
                font-size: 0.88rem;
                color: var(--text-dark);
            }

            .nav-sublink:hover {
                background-color: var(--bg-light);
                color: var(--sage);
            }
        }

        @media (max-width: 768px) {
            .nav-submenu {
                padding-left: 15px;
                margin-top: 8px;
                margin-bottom: 8px;
                border-left: 2px solid var(--bg-soft);
            }

            .nav-sublink {
                display: block;
                padding: 10px 0;
                font-size: 0.85rem;
                color: var(--text-muted);
            }
        }

        /* COMPONENTES GERAIS DE ESTRUTURA */
        section {
            padding: 80px 2rem;
            display: flex;
            justify-content: center;
        }

        .section-container {
            max-width: 1200px;
            width: 100%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 45px;
            max-width: 920px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        /* Parágrafo introdutório: regra global, aplicada a todo section-header (com ou sem .subtitle-fix) */
        .section-header p {
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Mantida por compatibilidade com marcação existente */
        .subtitle-fix {
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        
        /* BREADCRUMB (páginas internas de especialidade) */
        .breadcrumb-nav {
            padding: 75px 2rem 0 2rem;
            display: flex;
            justify-content: center;
            background-color: var(--bg-soft);
        }

        .breadcrumb-container {
            padding-bottom: 20px;
        }

        .breadcrumb-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .breadcrumb-list li:not(:last-child)::after {
            content: '/';
            margin-left: 8px;
            color: var(--text-muted);
        }

        .breadcrumb-list a:hover {
            color: var(--sage);
        }

        .breadcrumb-list li[aria-current="page"] {
            color: var(--dark-sage);
            font-weight: 500;
        }

        /* PÁGINAS DE ESPECIALIDADE - blocos extras */
        .signs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .sign-card {
            background-color: var(--white);
            padding: 30px 25px;
            border-radius: 14px;
            box-shadow: var(--shadow);
            border-left: 3px solid var(--sage);
        }

        .sign-card h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .sign-card p {
            font-size: 0.95rem;
        }

        .cross-link-box {
            background-color: var(--white);
            border: 1px solid rgba(93, 111, 84, 0.15);
            border-radius: 16px;
            padding: 35px 40px;
            margin-top: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cross-link-box p {
            margin: 0;
            font-size: 1.05rem;
            color: var(--text-dark);
        }

        .cross-link-box strong {
            color: var(--dark-sage);
        }

        @media (max-width: 768px) {
            .breadcrumb-nav { padding-top: 60px; }
            .signs-grid { grid-template-columns: 1fr; }
            .cross-link-box { flex-direction: column; align-items: flex-start; }
        }

        /* HERO SECTION */
        .hero {
            background-color: var(--bg-soft);
            padding-top: 170px;
            padding-bottom: 80px;
        }

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

        /* Variante de coluna única - usada quando não há imagem/card ao lado (páginas de serviço) */
        .hero-grid--single {
            grid-template-columns: 1fr;
            max-width: 760px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-grid--single .hero-actions {
            justify-content: center;
        }

        .hero-grid--single .hero-badges {
            justify-content: center;
        }

        .hero-grid--single .hero-description {
            text-align: left;
        }

        .hero-content h1 {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-family: var(--font-body);
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--dark-sage);
            margin-bottom: 20px;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 35px;
        }

        .hero-actions {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .hero-badges {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .badge {
            background-color: rgba(93, 111, 84, 0.08);
            border: 1px solid rgba(93, 111, 84, 0.2);
            color: var(--dark-sage);
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .badge-alert {
            background-color: rgba(160, 90, 90, 0.05);
            border-color: rgba(160, 90, 90, 0.2);
            color: #A05A5A;
        }

        .hero-image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .hero-image-wrapper::before {
            content: '';
            position: absolute;
            bottom: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--sage);
            border-radius: 20px;
            z-index: 1;
            pointer-events: none;
        }

        .hero-image-wrapper--card::before {
            display: none;
        }

        .hero-img {
            width: 100%;
            max-width: 450px;
            height: 550px;
            object-fit: cover;
            border-radius: 20px;
            position: relative;
            z-index: 2;
            box-shadow: var(--shadow);
            background-color: var(--bg-soft);
        }

        .hero-img--compact {
            max-width: 360px;
            height: 460px;
        }

        /* SOBRE A PSICÓLOGA */
        .about {
            background-color: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }

        .quote-box {
            border-left: 3px solid var(--sage);
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            font-family: var(--font-title);
            font-size: 1.3rem;
            color: var(--dark-sage);
        }

        .about-image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .about-image-wrapper::before {
           content: '';
    position: absolute;
    bottom: -20px;
    left: -20px; /* Mudado de right para left */
    width: 100%;
    height: 100%;
    border: 2px solid var(--sage);
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
        }

        .about-img {
            width: 100%;
            max-width: 450px;
            height: 550px;
            object-fit: cover;
            border-radius: 20px;
            position: relative;
            z-index: 2;
            box-shadow: var(--shadow);
        }

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

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

        .diff-card {
            background-color: var(--white);
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(68, 80, 62, 0.03);
        }

        .diff-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(68, 80, 62, 0.08);
        }

        .diff-icon {
            font-size: 2rem;
            color: var(--sage);
            margin-bottom: 20px;
            display: inline-block;
        }

        .diff-card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
        }

        /* ESPECIALIDADES (CONTEÚDO EXTENSO SEO) */
        .specialties {
            background-color: var(--white);
        }

        .specialty-block {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            background-color: var(--white);
            padding: 40px;
            border-radius: 24px;
            margin-bottom: 35px;
            border: 1px solid rgba(93, 111, 84, 0.1);
            box-shadow: var(--shadow);
        }

        .specialty-block:last-child {
            margin-bottom: 0;
        }

        .specialty-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .specialty-text {
            font-size: 1.05rem;
            text-align: justify;
        }

        .specialty-text p {
            margin-bottom: 15px;
        }

        .keywords-tag-container {
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .keyword-tag {
            font-size: 0.75rem;
            background-color: var(--bg-soft);
            color: var(--dark-sage);
            padding: 4px 12px;
            border-radius: 4px;
            font-weight: 500;
        }

        .specialty-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 22px;
            font-weight: 500;
            color: var(--sage);
            border-bottom: 2px solid var(--sage);
            padding-bottom: 3px;
            font-size: 0.95rem;
        }

        .specialty-link:hover {
            color: var(--dark-sage);
            border-color: var(--dark-sage);
            transform: translateX(3px);
        }

        /* TERAPIA ONLINE */
        .online-therapy {
            background-color: var(--dark-sage);
            color: var(--white);
        }

        .online-therapy h2, .online-therapy h3 {
            color: var(--white);
        }

        .online-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .online-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-top: 30px;
        }

        .online-item i {
            font-size: 1.5rem;
            color: var(--bg-soft);
            margin-bottom: 10px;
        }

        .online-item p {
            color: var(--bg-soft);
            font-size: 0.95rem;
        }

        /* PÚBLICO ATENDIDO */
        .audience {
            background-color: var(--bg-light);
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: start; /* Alinha o topo dos cards, incluindo o depoimento da Elaine */
        }

        .audience-card {
            background-color: var(--white);
            padding: 40px;
            border-radius: 16px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .audience-card i {
            font-size: 2.5rem;
            color: var(--sage);
            margin-bottom: 20px;
        }

        .notice-box {
            background-color: rgba(160, 90, 90, 0.05);
            border: 1px dashed rgba(160, 90, 90, 0.3);
            padding: 20px;
            border-radius: 12px;
            margin-top: 50px;
            text-align: center;
            color: #A05A5A;
            font-weight: 500;
        }

        /* COMO FUNCIONA */
        .process {
            background-color: var(--white);
        }

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

        .step-card {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--bg-soft);
            color: var(--dark-sage);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-title);
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0 auto 20px auto;
        }

        .step-card h3 {
            font-size: 1.25rem;
            margin-bottom: 10px;
        }

        .process-meta {
            margin-top: 60px;
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            background-color: var(--bg-light);
            padding: 30px;
            border-radius: 16px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            color: var(--dark-sage);
        }

        .meta-item i {
            color: var(--sage);
        }

        /* CONSULTÓRIO E SEO LOCAL */
        .clinic {
            background-color: var(--bg-light);
        }

        .clinic-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: start;
        }

        .clinic-info h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .clinic-photos {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .clinic-photos img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: var(--shadow);
            aspect-ratio: 3/4;
        }

        .address-box {
            margin: 25px 0;
            font-size: 1.1rem;
        }

        .address-box p {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .seo-local-text {
            margin-top: 30px;
            font-size: 0.95rem;
            border-top: 1px solid var(--bg-soft);
            padding-top: 20px;
        }

        .map-wrapper {
            width: 100%;
            height: 450px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

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

        .map-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background-color: var(--bg-soft);
            background-image:
                linear-gradient(rgba(93, 111, 84, 0.08), rgba(93, 111, 84, 0.08)),
                repeating-linear-gradient(45deg, rgba(93, 111, 84, 0.04) 0px, rgba(93, 111, 84, 0.04) 2px, transparent 2px, transparent 14px);
            color: var(--dark-sage);
            font-family: var(--font-body);
            transition: var(--transition);
        }

        .map-placeholder:hover {
            background-color: var(--bg-light);
        }

        .map-placeholder i {
            font-size: 2.2rem;
            color: var(--sage);
        }

        .map-placeholder span {
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.2px;
        }

        /* AVALIAÇÕES SUCESSO DO GOOGLE */
        .reviews {
            background-color: var(--white);
        }

        .review-card {
            background-color: var(--bg-light);
            padding: 35px;
            border-radius: 16px;
            box-shadow: var(--shadow);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .review-user {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .avatar-placeholder {
            width: 45px;
            height: 45px;
            background-color: var(--bg-soft);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--dark-sage);
        }

        .stars i {
            color: var(--google-yellow);
        }

        .reviews-link-container {
            text-align: center;
            margin-top: 40px;
        }

        .btn-reviews {
            font-family: var(--font-body);
            font-size: 1rem;
            color: var(--sage);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-bottom: 2px solid var(--sage);
            padding-bottom: 4px;
            transition: var(--transition);
        }

        .btn-reviews:hover {
            color: var(--dark-sage);
            border-color: var(--dark-sage);
            transform: translateX(3px);
        }

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

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

        .faq-item {
            background-color: var(--white);
            margin-bottom: 15px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

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

        .faq-trigger i {
            transition: transform 0.3s ease;
            color: var(--sage);
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 30px;
        }

        .faq-content p {
            padding-bottom: 22px;
            font-size: 1rem;
        }

        .faq-item.active .faq-trigger {
            background-color: rgba(93, 111, 84, 0.03);
        }

        .faq-item.active .faq-trigger i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-content {
            max-height: 300px; /* Suficiente para a resposta */
        }

        /* CTA FINAL */
        .cta-final {
            background-color: var(--bg-soft);
            text-align: center;
            padding: 90px 2rem;
        }

        .cta-final h2 {
            font-size: 2.6rem;
            margin-bottom: 15px;
        }

        .cta-final p {
            font-size: 1.15rem;
            max-width: 600px;
            margin: 0 auto 30px auto;
        }

        /* KICKER - rótulo pequeno acima do H2, reutilizável em qualquer bloco do site */
        .cta-kicker {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--sage);
            margin-bottom: 10px;
        }

        /* LOCALIZAÇÃO/MODALIDADE - pills com ícone Font Awesome, mesma linguagem visual do .badge */
        .cta-locations {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 0 0 32px 0;
        }

        .cta-location-item {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background-color: rgba(93, 111, 84, 0.08);
            border: 1px solid rgba(93, 111, 84, 0.2);
            color: var(--dark-sage);
            padding: 0.6rem 1.3rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .cta-location-item i {
            color: var(--sage);
        }

        /* Lista simples de modalidade no CTA final - sem ícones coloridos, sem chips */
        .cta-simple-list {
            list-style: none;
            margin: 0 0 32px 0;
            padding: 0;
        }

        .cta-simple-list li {
            font-size: 1.05rem;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .cta-simple-list li::before {
            content: "•";
            color: var(--sage);
            margin-right: 10px;
        }

        /* BLOCO INFORMATIVO DE MODALIDADE (presencial/online) - visualmente distinto do CTA final */
        .modality-info {
            background-color: var(--bg-light);
            text-align: center;
            padding: 60px 2rem;
            border-top: 1px solid var(--bg-soft);
            border-bottom: 1px solid var(--bg-soft);
        }

        .modality-info h2 {
            font-size: 1.6rem;
            margin-bottom: 15px;
        }

        .modality-info p {
            font-size: 1.05rem;
            max-width: 820px;
            margin: 0 auto;
            color: var(--text-muted);
        }

        /* CARD DE MENSAGEM DO HERO - discreto, sem foto/ícone/botão, usado nas páginas de serviço */
        .hero-message-card {
            position: relative;
            background-color: var(--white);
            border: 1px solid var(--bg-soft);
            border-radius: 20px;
            padding: 40px 36px;
            box-shadow: var(--shadow);
            max-width: 430px;
            width: 100%;
            z-index: 2;
        }

        .hero-message-card::before {
            content: '';
            position: absolute;
            bottom: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--sage);
            border-radius: 20px;
            z-index: -1;
            pointer-events: none;
        }

        .hero-message-card p {
            margin-bottom: 16px;
            color: var(--text-muted);
        }

        .hero-message-card p:last-child {
            margin-bottom: 0;
        }

        .hero-message-card p:first-child {
            font-family: var(--font-title);
            font-size: 1.3rem;
            color: var(--dark-sage);
            font-style: italic;
        }

        /* CARD INSTITUCIONAL (sem foto) - usado nas páginas de serviço no lugar da fotografia */
        .institutional-card {
            background-color: var(--white);
            border: 1px solid var(--bg-soft);
            border-radius: 20px;
            padding: 45px 35px;
            box-shadow: var(--shadow);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 14px;
        }

        .institutional-card .institutional-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background-color: var(--bg-soft);
            color: var(--sage);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 6px;
        }

        .institutional-card h2,
        .institutional-card .institutional-name {
            font-family: var(--font-title);
            font-size: 1.4rem;
            color: var(--dark-sage);
            margin: 0;
        }

        .institutional-card .institutional-role {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin: 0;
        }

        .institutional-card .institutional-crp {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--sage);
            letter-spacing: 0.3px;
            margin: 4px 0;
        }

        .institutional-card .institutional-location {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
        }

        /* ÍCONE CIRCULAR REUTILIZÁVEL - badge de destaque para seções sem card/imagem */
        .icon-badge {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--bg-soft);
            color: var(--sage);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 18px auto;
        }

        .icon-badge-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 18px;
        }

        .icon-badge-row .icon-badge {
            margin: 0;
            width: 52px;
            height: 52px;
            font-size: 1.3rem;
        }

        /* BLOCO INSTITUCIONAL DISCRETO (antes do FAQ nas páginas de serviço) */
        .institutional-note {
            background-color: var(--bg-light);
            text-align: center;
            padding: 50px 2rem;
            border-top: 1px solid var(--bg-soft);
            border-bottom: 1px solid var(--bg-soft);
        }

        .institutional-note h2 {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        .institutional-note p {
            max-width: 820px;
            margin: 0 auto 20px auto;
        }


        .about-link-box {
            background-color: var(--bg-light);
            border: 1px dashed var(--sage);
            border-radius: 16px;
            padding: 35px;
            text-align: center;
            margin-top: 40px;
        }

        .about-link-box p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }

        /* FOOTER */
        .footer {
            background-color: var(--dark-sage);
            color: var(--white);
            padding: 80px 2rem 30px 2rem;
            font-size: 0.95rem;
        }

        .footer p, .footer h3, .footer h4 {
            color: var(--white);
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 50px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 50px;
            margin-bottom: 30px;
        }

        .footer-brand h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .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;
            transition: var(--transition);
        }

        .social-icon:hover {
            background-color: var(--sage);
        }

        .footer-links h4, .footer-contact h4 {
            font-family: var(--font-body);
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
        }

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

        .footer-contact p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .copyright {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255,255,255,0.5);
            font-size: 0.85rem;
            flex-wrap: wrap;
            gap: 15px;
        }

        /* RESPONSIVIDADE (TABLETS E SMARTPHONES) */
        @media (max-width: 1024px) {
            html { font-size: 15px; }
            .hero-grid, .about-grid, .clinic-grid, .online-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-image-wrapper { order: -1; }
            .grid-6 { grid-template-columns: repeat(2, 1fr); }
            .grid-3, .process-steps { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--bg-light);
                flex-direction: column;
                padding: 40px 2rem;
                align-items: flex-start;
                transition: var(--transition);
                box-shadow: var(--shadow);
            }
            .nav-menu.active { left: 0; }
            .menu-toggle { display: block; }
            .nav-container .btn { display: none; } /* Oculta CTA do header no mobile para limpar design */
            .grid-6, .grid-3, .process-steps { grid-template-columns: 1fr; }
            .hero-content h1 { font-size: 2.4rem; }
            section { padding: 50px 1.5rem; }
            .specialty-block { padding: 30px 20px; }
            .online-features { grid-template-columns: 1fr; }
        }
    .address-box{
    margin: 25px 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.address-box p{
    margin: 0;
}

.seo-local-text{
    border-top: 1px solid rgba(0,0,0,.08);
    padding-top: 30px;
    margin-top: 30px;
}

.seo-local-text p{
    margin-bottom: 20px;
    line-height: 1.9;
}

/* BOTÃO FLUTUANTE DO WHATSAPP (compartilhado entre páginas) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 40px;
    width: 60px;
    height: 60px;
    z-index: 9999;
}

.whatsapp-float-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulseWave 2s infinite ease-out;
    pointer-events: none;
}

.whatsapp-float-btn {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-float-btn:hover {
    transform: scale(1.08);
}

@keyframes pulseWave {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 768px) {
    .whatsapp-float { right: 20px; bottom: 20px; width: 54px; height: 54px; }
    .whatsapp-float-btn { width: 54px; height: 54px; }
}
