/* Prevenção de Câncer Digestivo */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

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

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

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

        .hero-content p {
            font-size: 1rem;
            color: #d0d8dd;
            margin-bottom: 0;
            line-height: 1.8;
            max-width: 600px;
        }

        /* CONTEÚDO */
        .conteudo {
            padding: 5rem 2rem;
            background-color: var(--light-gray);
        }

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

        .secao {
            background-color: var(--white);
            padding: 2.5rem;
            margin-bottom: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .secao.no-box {
            background-color: transparent;
            box-shadow: none;
            padding: 0;
        }

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

        .secao-grid.compact {
            grid-template-columns: 380px 1fr;
            gap: 2rem;
            align-items: flex-start;
        }

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

        .secao.text-center h3 {
            margin-left: auto;
            margin-right: auto;
        }

        .secao.text-center p {
            margin-left: auto;
            margin-right: auto;
            max-width: 800px;
            margin-bottom: 1.5rem;
        }

        .secao.text-center .conveniios-logos {
            justify-content: center;
            display: flex;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .secao.text-center .secao-ctas {
            display: flex;
            justify-content: center;
            margin-top: 1.5rem;
        }

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

        .secao.text-center .btn-secundario:hover {
            background-color: var(--primary-teal);
            transform: translateY(-2px);
        }

        .secao p {
            font-size: 1rem;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1rem;
            text-align: left;
        }

        .secao p:last-child {
            margin-bottom: 0;
        }

        .secao ul {
            margin-left: 1.5rem;
            margin-bottom: 1rem;
        }

        .secao li {
            font-size: 1rem;
            color: var(--text-dark);
            line-height: 1.4;
            margin-bottom: 0.5rem;
            text-align: left;
        }

        .secao-imagem {
            display: flex;
            justify-content: center;
            align-items: center;
            padding-right: 30px;
        }

        .secao-imagem img {
            width: 100%;
            max-width: 380px;
            height: auto;
            border-radius: 12px;
        }

        .secao-ctas {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .btn-secundario {
            background-color: var(--primary-teal);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            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;
        }

        .btn-secundario:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .conveniios-logos {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            align-items: center;
            margin-top: 1.5rem;
        }

        .conveniios-logos img {
            height: 50px;
            width: auto;
        }

        /* BLOG SECTION */
        .blog-section {
            padding: 5rem 2rem;
            background-color: var(--white);
        }

        .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-header p {
            font-size: 1rem;
            color: var(--text-dark);
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 2rem;
        }

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

        .blog-card {
            background: var(--light-gray);
            padding: 1.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

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

        .blog-card h4 {
            font-size: 1.1rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .blog-card a {
            color: var(--primary-teal);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .blog-card a:hover {
            color: var(--primary-dark);
        }

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

        /* FAQ */
        .faq {
            padding: 5rem 2rem;
            background-color: var(--light-gray);
        }

        .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(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

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

        .accordion-item {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

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

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

        .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;
            text-align: left;
        }

        /* 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;
        }

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

        /* 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);
        }

        .secao-grid-custom {
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: 3rem;
            align-items: center;
        }

        .secao-grid-custom .secao-imagem img {
            width: 100%;
            max-width: 380px;
            height: auto;
            border-radius: 12px;
        }

        @media (max-width: 768px) {
            .secao-grid-custom {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .secao-grid-custom .secao-imagem img {
                max-width: 300px;
            }

            .secao-grid-custom > div:last-child {
                max-width: 100%;
            }
            .secao-grid {
                grid-template-columns: 1fr;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .hero {
                height: 280px;
            }

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

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

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

        @media (max-width: 480px) {
            .hero {
                height: 220px;
                padding: 0 1rem;
            }

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

            .conteudo {
                padding: 2rem 1rem;
            }

            .secao-ctas {
                flex-direction: column;
            }

            .btn-secundario {
                width: 100%;
                text-align: center;
            }

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

            .footer-logo img {
                width: 120px;
            }
        }
    
        /* 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;
            }
        }
    


        /* Animações de entrada */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .fade-in-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .fade-in-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Seção convenios centralizada e com fundo destaque */
        .secao.text-center {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2a5a6e 100%);
            color: var(--white);
            border-radius: 16px;
        }
        .secao.text-center h3 {
            color: var(--white) !important;
        }
        .secao.text-center h3::before {
            background: var(--primary-teal);
        }
        .secao.text-center p {
            color: #d0d8dd !important;
        }
        .secao.text-center .btn-secundario {
            background-color: var(--primary-teal) !important;
            border: 2px solid var(--primary-teal);
        }
        .secao.text-center .btn-secundario:hover {
            background-color: transparent !important;
            color: var(--primary-teal) !important;
        }

        /* FAQ fundo teal */
        .faq {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2a5a6e 100%) !important;
        }
        .faq-header h2 {
            color: var(--white) !important;
        }
        .accordion-item {
            background: rgba(255,255,255,0.95) !important;
        }

        /* Blog cards estilo */
        .blog-section {
            background: var(--light-gray);
        }
        .blog-card {
            background: var(--white);
            border-top: 3px solid var(--primary-teal);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(26,155,142,0.15);
        }

        /* CTA final destaque */
        .cta-final {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2a5a6e 100%) !important;
        }
        .cta-final h2 {
            color: var(--white) !important;
        }
        .cta-final-botao {
            background-color: var(--primary-teal) !important;
        }
        .cta-final-botao:hover {
            background-color: var(--white) !important;
            color: var(--primary-dark) !important;
        }
    
    /* ===== LAYOUT SEÇÃO 1 ===== */
    .conteudo-container {
        max-width: 1280px !important;
        margin: 0 auto;
        padding: 0 2rem;
    }
    .blog-container, .faq-container {
        max-width: 1280px !important;
        margin: 0 auto;
    }

    /* Seção 1: texto esquerda, imagem direita */
    .secao.no-box.secao-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        padding: 0.75rem 0;
    }

    /* Imagem - formato original preservado */
    .secao.no-box.secao-grid .secao-imagem img {
        border-radius: 12px !important;
        width: 100% !important;
        height: auto !important;
        max-width: 480px !important;
        object-fit: unset !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* Texto alinhado esquerda */
    .secao p, .secao li { text-align: left !important; }

    @media (max-width: 768px) {
        .secao.no-box.secao-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }
    
    /* Seção 4 - Fundo escuro full-width */
    .secao-dark-full {
        background-color: #1f3046;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding: 4rem 2rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .secao-dark-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 380px 1fr;
        gap: 4rem;
        align-items: center;
    }
    .secao-dark-imagem img {
        width: 100%;
        max-width: 360px;
        height: auto;
        display: block;
    }
    .secao-dark-texto h3 {
        color: #ffffff !important;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1.2rem;
    }
    .secao-dark-texto p {
        color: #c8dde6 !important;
        line-height: 1.9;
        margin-bottom: 1rem;
        text-align: left !important;
    }
    @media (max-width: 768px) {
        .secao-dark-inner {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .secao-dark-imagem img { max-width: 260px; margin: 0 auto; }
    }

    /* Botões com laterais arredondadas em todo o site */
    .btn-secundario,
    .cta-botao,
    .cta-final-botao,
    .cta-button,
    button.btn,
    a.btn,
    .card-cta {
        border-radius: 25px !important;
    }

    /* Seções sem box por padrão */
    .secao:not(.no-box):not(.text-center) {
        background: transparent !important;
        padding: 2rem 0 !important;
        box-shadow: none !important;
        margin-bottom: 0;
    }

    /* Box da seção 2 */
    .secao-box {
        background-color: #e8eef3;
        max-width: 1360px;
        margin: 0 auto 1.5rem;
        border-radius: 16px;
        padding: 3rem calc((1360px - 1280px) / 2 + 2rem);
    }

    .secao-box .secao-content {
        max-width: 1280px;
        margin: 0 auto;
    }
    
    
    /* ===== TÍTULOS PADRÃO ===== */
    /* Escopo apenas para conteúdo - não afeta footer */
    .hero-content h1,
    .conteudo h3,
    .conteudo-container h3,
    .secao h3,
    .secao-box h3,
    .secao-content h3,
    .blog-header h2,
    .faq-header h2,
    .cta-final h2 {
        font-family: 'Poppins', sans-serif !important;
        font-size: 24px !important;
        color: #1f3046 !important;
        font-weight: 700 !important;
    }
    .hero-content h1 {
        font-size: 2rem !important;
        color: #ffffff !important;
    }
    .secao-dark-texto h3,
    .faq-header h2,
    .cta-final h2 {
        color: #ffffff !important;
    }

    

.footer-col-info h3:nth-child(1) { color: rgb(255, 255, 255) !important }
