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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

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

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

        /* ============ 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 a:hover::after {
            width: 100%;
        }

        .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;
        }

        .nav-dropdown {
            position: relative;
        }

        .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 SECTION ============ */
        .hero {
            background: url('/uploads/hero-image.webp') right center/cover no-repeat;
            color: var(--white);
            padding: 4rem 2rem;
            min-height: 600px;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-container {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            width: 100%;
            padding-right: 2rem;
        }

        .hero-content {
            width: 650px;
        }

        /* ============ TYPING ANIMATION ============ */
        .hero-content h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.2;
            min-height: 3em;
        }

        .typing-line {
            display: block;
            overflow: hidden;
            white-space: nowrap;
            width: 0;
        }

        .typing-line.typed {
            width: 100%;
            transition: width 0s;
        }

        .hero-content p {
            font-size: 1rem;
            color: #d0d8dd;
            margin-bottom: 2rem;
            line-height: 1.8;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .hero-content p.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-cta {
            display: inline-block;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .hero-cta.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-content h1 .subtitle {
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--primary-teal);
            display: block;
            margin-bottom: 0.5rem;
        }

        .hero-content p {
            font-size: 1rem;
            color: #d0d8dd;
            margin-bottom: 2rem;
            line-height: 1.8;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .hero-cta {
            display: inline-block;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .cta-button {
            background-color: var(--primary-teal);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-teal);
            cursor: pointer;
            display: inline-block;
        }

        .cta-button:hover {
            background-color: transparent;
            color: var(--primary-teal);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(26, 155, 142, 0.3);
        }

        /* ============ PORQUE ESCOLHER ============ */
        .porque-escolher {
            padding: 5rem 2rem;
            background-color: var(--white);
        }

        .porque-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 680px 500px;
            gap: 3rem;
            align-items: center;
        }

        .porque-imagem {
            display: flex;
            justify-content: center;
            order: 2;
            animation: slideInRight 0.8s ease-out;
            width: 500px;
        }

        .foto-circular {
            position: relative;
            width: 100%;
            max-width: 500px;
            overflow: hidden;
        }

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

        .porque-conteudo {
            order: 1;
            animation: slideInLeft 0.8s ease-out;
            width: 680px;
        }

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

        .porque-apoio {
            font-size: 1rem;
            color: #666;
            margin-bottom: 0.6rem;
            line-height: 1.8;
            font-weight: 500;
        }

        .bullets {
            list-style: none;
            margin-bottom: 2rem;
        }

        .bullets li {
            display: flex;
            gap: 1rem;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            color: var(--text-dark);
            line-height: 1.6;
        }

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

        /* ============ ESPECIALIDADES ============ */
        .especialidades {
            padding: 4rem 2rem;
            position: relative;
            background-image: url('/uploads/fundo01-adaaebf9.jpg');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        .especialidades::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(15, 35, 50, 0.75);
            z-index: 0;
        }

        .especialidades > * {
            position: relative;
            z-index: 1;
        }

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

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

        .carrossel-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .carrossel-wrapper {
            flex: 1;
            overflow: hidden;
        }

        .carrossel {
            display: flex;
            gap: 2rem;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card-especialidade {
            flex: 0 0 calc(33.333% - 1.33rem);
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .card-especialidade:hover .card-imagem img {
            transform: scale(1.05);
        }

        .card-imagem {
            width: auto;
            height: auto;
            margin: 0 auto 1.5rem;
            overflow: visible;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 250px;
        }

        .card-imagem img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .card-conteudo {
            color: var(--white);
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .card-conteudo h3 {
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .card-conteudo p {
            font-size: 0.85rem;
            color: #d0d8dd;
            line-height: 1.6;
            margin-bottom: 1.2rem;
            flex: 1;
        }

        .card-cta {
            background-color: var(--primary-teal);
            color: var(--white);
            padding: 0.6rem 1.4rem;
            border: none;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            align-self: center;
            margin-top: auto;
        }

        .card-cta:hover {
            background-color: var(--white);
            color: var(--primary-teal);
            transform: translateY(-2px);
        }

        .carrossel-botao {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            background: var(--primary-teal);
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            align-self: center;
        }

        .carrossel-botao:hover {
            background-color: var(--white);
            color: var(--primary-teal);
            transform: scale(1.1);
        }

        .especialidades-cta {
            text-align: center;
            margin-top: 3rem;
        }

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

        .especialidades-cta-botao:hover {
            background-color: var(--white);
            color: var(--primary-teal);
            transform: translateY(-2px);
        }

        /* ============ PARALLAX ============ */
        .parallax {
            position: relative;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            z-index: 1;
        }

        .parallax-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 58, 71, 0.6);
            z-index: 2;
        }

        .parallax-conteudo {
            position: relative;
            z-index: 3;
            text-align: center;
            color: var(--white);
            max-width: 1200px;
            padding: 2rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .parallax-conteudo p {
            font-size: 1.8rem;
            font-weight: 600;
            line-height: 1.6;
            margin-bottom: 2rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

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

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

        /* ============ COMO FUNCIONA ============ */
        .como-funciona {
            padding: 5rem 2rem;
            background-color: var(--light-gray);
        }

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

        .como-funciona-header {
            text-align: center;
            margin-bottom: 2rem;
        }

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

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

        .etapas {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .etapa {
            text-align: center;
            position: relative;
        }

        .etapa::after {
            content: '';
            position: absolute;
            top: 50px;
            left: calc(100% + 1rem);
            width: 2rem;
            height: 2px;
            background: #ddd;
        }

        .etapa:last-child::after {
            display: none;
        }

        .etapa-numero {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--primary-teal);
            color: var(--white);
            font-size: 2rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 4px 12px rgba(26, 155, 142, 0.2);
        }

        .etapa h3 {
            font-size: 1.1rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.4;
        }

        .etapa p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
        }

        .como-funciona-cta {
            text-align: center;
        }

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

        .como-funciona-botao:hover {
            background-color: var(--primary-teal);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 58, 71, 0.3);
        }

        /* ============ QUEM É ============ */
        .quem-e {
            padding: 5rem 2rem;
            background-color: var(--white);
        }

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

        .quem-e-imagem {
            display: flex;
            justify-content: center;
            animation: slideInLeft 0.8s ease-out;
        }

        .foto-dr {
            position: relative;
            width: 100%;
            max-width: 400px;
        }

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

        .quem-e-conteudo {
            animation: slideInRight 0.8s ease-out;
        }

        .quem-e-conteudo h2 {
            font-size: 2.2rem;
            color: var(--primary-teal);
            margin-bottom: 0.5rem;
            line-height: 1.3;
            font-weight: 700;
        }

        .quem-e-crm {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 2rem;
            font-weight: 500;
        }

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

        .quem-e-cta {
            background-color: var(--primary-teal);
            color: var(--white);
            text-decoration: none;
            display: inline-block;
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 1rem;
        }

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

        /* ============ CONVÊNIOS ============ */
        .convenios {
            padding: 5rem 2rem;
            background-color: var(--white);
        }

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

        .convenios-header {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
        }

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

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

        .convenios-conteudo p {
            font-size: 1rem;
            color: var(--text-dark);
            line-height: 1.8;
        }

        .convenios-logos {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            justify-content: center;
            animation: slideInRight 0.8s ease-out;
        }

        .logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .logo-item img {
            max-width: 100px;
            height: auto;
            display: block;
            transition: all 0.3s ease;
        }

        .logo-item:hover img {
            transform: scale(1.08);
        }

        /* ============ BLOG ============ */
        .blog {
            padding: 5rem 2rem;
            background-color: var(--light-gray);
        }

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

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

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

        .blog-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .blog-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .blog-imagem {
            width: 100%;
            height: 220px;
            overflow: hidden;
            background: #f0f0f0;
        }

        .blog-imagem img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-card:hover .blog-imagem img {
            transform: scale(1.05);
        }

        .blog-conteudo {
            padding: 1.5rem;
        }

        .blog-conteudo h3 {
            font-size: 1.1rem;
            color: var(--primary-dark);
            margin-bottom: 0.8rem;
            font-weight: 700;
            line-height: 1.4;
        }

        .blog-conteudo p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.2rem;
        }

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

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

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

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

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

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

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

        .accordion {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .accordion-item {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            animation: slideInUp 0.6s ease-out;
        }

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

        .accordion-header {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--white);
            border: none;
            width: 100%;
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-dark);
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background-color: #f9f9f9;
        }

        .accordion-icon {
            font-size: 1.5rem;
            color: var(--primary-dark);
            transition: transform 0.3s ease;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: var(--white);
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
        }

        .accordion-content p {
            padding: 0 1.5rem 1.5rem 1.5rem;
            color: #666;
            font-size: 0.95rem;
            line-height: 1.8;
        }

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

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

        .faq-botao:hover {
            background-color: var(--white);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* ============ CONTATO ============ */
        .contato {
            padding: 5rem 2rem;
            background-color: var(--light-gray);
        }

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

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

        .contato-header h2 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        .contato-formulario {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            animation: slideInLeft 0.8s ease-out;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group textarea {
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 6px;
            background-color: var(--white);
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            color: var(--text-dark);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            box-shadow: 0 4px 16px rgba(26, 155, 142, 0.2);
            border: 1px solid var(--primary-teal);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contato-botao {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: 100%;
        }

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

        .contato-mapa {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            animation: slideInRight 0.8s ease-out;
        }

        .contato-mapa iframe {
            width: 100%;
            height: 450px;
            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);
        }

        /* ============ 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 fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .etapas {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .etapa::after {
                display: none;
            }
        }

        /* ============ HAMBURGER MENU ============ */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0.5rem;
            z-index: 1001;
        }
        .hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background-color: var(--primary-dark);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.4);
            z-index: 999;
        }
        .nav-overlay.active { display: block; }

        @media (max-width: 768px) {
            .hamburger { display: flex; }

            /* Fix texto hero mobile */
            .typing-line {
                white-space: normal !important;
                width: auto !important;
                overflow: visible !important;
            }
            .hero-content h1 {
                min-height: unset !important;
            }

            .header-container {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 0.75rem 1.2rem;
                gap: 0;
            }

            nav {
                display: none;
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 80%;
                max-width: 320px;
                background: var(--white);
                flex-direction: column;
                gap: 0;
                padding: 5rem 1.5rem 2rem;
                box-shadow: -4px 0 20px rgba(0,0,0,0.15);
                z-index: 1000;
                overflow-y: auto;
                align-items: flex-start;
            }
            nav.open { display: flex; }

            nav a {
                font-size: 1rem;
                padding: 0.9rem 0;
                border-bottom: 1px solid #eee;
                width: 100%;
            }
            nav a::after { display: none; }

            .nav-dropdown {
                width: 100%;
                display: block;
            }
            .nav-dropdown > a {
                width: 100%;
                display: block;
                padding: 0.9rem 0;
                border-bottom: 1px solid #eee;
            }
            .dropdown-menu {
                position: static;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                background: var(--light-gray);
                border-radius: 8px;
                min-width: unset;
                width: 100%;
                margin-top: 0;
                padding: 0.5rem 0;
            }
            .nav-dropdown.mobile-open .dropdown-menu { display: block; }
            .dropdown-menu a { padding: 0.7rem 1rem; font-size: 0.9rem; }
            .dropdown-menu a::after { display: none; }

            .social-links { gap: 0.5rem; }
            .social-links a { display: none; }

            /* Parallax especialidades - mobile fallback */
            .especialidades {
                background-attachment: scroll;
            }

            /* Parallax mobile - fonte menor */
            .parallax-content h2 {
                font-size: 1.2rem !important;
                line-height: 1.4 !important;
            }
            .parallax-content p {
                font-size: 0.85rem !important;
            }
            .parallax-conteudo p {
                font-size: 1.1rem !important;
                line-height: 1.5 !important;
            }
            .social-links a { width: 34px; height: 34px; }

            .hero {
                background: url('/uploads/banner-hero-mobile.webp') center/cover no-repeat !important;
                min-height: 400px;
            }
            .hero-container { justify-content: center; padding: 0 1rem; }
            .hero-content { width: 100%; max-width: 100%; }
            .hero-content h1 { font-size: 1.6rem; }
            .hero-content h1 .subtitle { font-size: 0.95rem; }
            .hero-content p { font-size: 0.88rem; }

            /* Parallax mobile */
            .parallax { min-height: 250px !important; }
            .parallax-content h2 { font-size: 1.4rem !important; }

            /* Títulos seções mobile */
            .porque-escolher h2,
            .especialidades-header h2,
            .quem-e-header h2,
            .convenios-header h2,
            .blog-header h2,
            .faq-header h2,
            .contato-header h2 { font-size: 1.6rem; }

            .porque-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                justify-items: center;
            }

            .porque-conteudo {
                width: 350px !important;
                max-width: 100%;
            }

            .porque-imagem {
                width: 350px !important;
                max-width: 100%;
            }

            .quem-e-container,
            .convenios-header,
            .contato-conteudo {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            /* Carrossel 1 card por vez */
            .carrossel-container { gap: 0.5rem; }
            .carrossel-wrapper { overflow: hidden; width: 100%; }
            .carrossel { gap: 0 !important; }
            .card-especialidade { flex: 0 0 100% !important; min-width: 100% !important; }

            .blog-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .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;
            }
        }

        @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-hero-mobile.webp') center/cover no-repeat !important;
                min-height: 350px;
                padding: 1.5rem 1rem;
            }

            .hero-container {
                justify-content: center;
                padding-right: 0.5rem;
                padding-left: 0.5rem;
            }

            .hero-content {
                width: 100%;
                max-width: 400px;
            }

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

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

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

            .blog-cards {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .etapas {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .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;
            }

            .contato-mapa iframe {
                height: 300px;
            }
        }
    
        /* 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;
        }
