/* Política de Privacidade */
* { 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;
        }

        /* 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;
        }
        .hero-container { max-width: 1200px; margin: 0 auto; width: 100%; }
        .hero-content h1 { font-size: 2rem; font-weight: 700; line-height: 1.2; }

        /* CONTEÚDO */
        .conteudo {
            padding: 5rem 2rem;
            background-color: var(--light-gray);
        }
        .conteudo-container {
            max-width: 900px;
            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 h2 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            font-weight: 700;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--primary-teal);
        }

        .secao h3 {
            font-size: 1.1rem;
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
            margin-top: 1.5rem;
            font-weight: 600;
        }

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

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

        .secao li {
            font-size: 0.95rem;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }

        .secao a {
            color: var(--primary-teal);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .secao a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .data-atualizacao {
            text-align: center;
            color: #888;
            font-size: 0.85rem;
            margin-bottom: 2rem;
        }

        @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; }
            .conteudo { padding: 2rem 1rem; }
            .secao { padding: 1.5rem; }
        }
