/* ============================================
   Dr. Saada 2026 - CSS Responsivo
   Mobile First Approach
   ============================================ */

/* Breakpoints:
   - Mobile: até 480px (base)
   - Tablet: 481px - 768px
   - Desktop: 769px+ (não alterar - está perfeito)
*/

/* ============================================
   UTILITÁRIOS RESPONSIVOS
   ============================================ */

/* Prevenir overflow horizontal global */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Container responsivo */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}

/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */

/* Menu Mobile - Layout 3 Colunas: Logo | Agende sua Consulta | Menu */
@media (max-width: 768px) {
    .header-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        width: 100%;
        flex-wrap: nowrap;
    }
    
    .site-logo {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        min-width: 0;
        order: 1;
    }
    
    .site-logo img {
        max-height: 45px;
        width: auto;
        max-width: 100%;
    }
    
    .header-cta {
        flex: 1 1 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 0;
        padding: 0 0.25rem;
        order: 2;
    }
    
    .header-cta .btn {
        padding: 0.65rem 0.65rem;
        font-size: 1rem;
        white-space: nowrap;
        min-height: 36px;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .main-navigation {
        flex: 0 0 auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        min-width: 0;
        order: 3;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        padding: 0;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    
    .menu-toggle.active .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.active .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-gray-light);
    }
    
    .nav-menu a {
        display: block;
        padding: 1.25rem 1rem;
        font-size: 1.1rem;
        color: var(--color-gray-dark);
        width: 100%;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .menu-item-has-children > a {
        padding-right: 3rem;
        position: relative;
    }
    
    .menu-item-has-children > a::after {
        content: '▼';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.75rem;
        color: var(--color-primary);
        transition: transform 0.3s ease;
    }
    
    .menu-item-has-children.sub-menu-open > a::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .sub-menu {
        display: none;
        width: 100%;
        position: static;
        background-color: var(--color-gray-light);
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
    }
    
    .menu-item-has-children.sub-menu-open .sub-menu {
        display: block;
    }
    
    .sub-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .sub-menu a {
        padding: 1rem 1rem 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .sub-menu a .menu-arrow {
        display: none;
    }
    
    /* Overlay quando menu está aberto */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    /* Fechar menu ao clicar no overlay */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.75rem 0;
    }
    
    .header-content {
        gap: 0.25rem;
    }
    
    .site-logo img {
        max-height: 40px;
    }
    
    .header-cta .btn {
        padding: 0.65rem 0.65rem;
        font-size: 1rem;
        min-height: 36px;
    }
    
    .menu-toggle {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   HOMEPAGE - HERO SECTION
   ============================================ */

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        margin: 2rem 0 !important;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .stat-label {
        font-size: 0.85rem !important;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 60vh;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
    }
    
    .hero-stats {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.25rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem !important;
    }
}

/* ============================================
   HOMEPAGE - OUTRAS SEÇÕES
   ============================================ */

@media (max-width: 768px) {
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    /* Credentials Section */
    .credentials-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    /* Video Section */
    .video-section iframe {
        height: 250px;
    }
    
    /* Blog Section */
    .blog-preview-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Resources Section */
    .resources-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* FAQ */
    .faq-list {
        margin-top: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    /* Como Funciona */
    .como-funciona-section {
        padding: 3rem 0;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .como-funciona-section .container {
        max-width: 100%;
        padding: 0 1rem;
        overflow-x: hidden;
    }
    
    .processo-timeline {
        max-width: 100%;
        margin: 3rem auto 0;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .step-connector {
        left: 30px;
    }
    
    .processo-step {
        margin-bottom: 2.5rem;
    }
    
    .step-content {
        flex-direction: row !important;
        margin-left: 4rem;
        padding: 1.5rem;
        width: calc(100% - 4rem);
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .processo-step:nth-child(even) .step-content {
        flex-direction: row !important;
    }
    
    .step-number-circle,
    .step-icon-wrapper {
        width: 50px;
        height: 50px;
        min-width: 50px;
        flex-shrink: 0;
    }
    
    .step-icon {
        width: 24px;
        height: 24px;
    }
    
    .step-text {
        flex: 1;
        min-width: 0;
    }
    
    .step-text h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .step-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .steps-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Diferenciais */
    .diferenciais-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Cirurgias */
    .cirurgias-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Localização */
    .localizacao-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* CTA Sections */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .video-section iframe {
        height: 200px;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    /* Como Funciona - Mobile Pequeno */
    .como-funciona-section {
        padding: 2rem 0;
    }
    
    .processo-timeline {
        padding: 0;
        margin: 2rem auto 0;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .timeline-line {
        left: 25px;
    }
    
    .step-connector {
        left: 25px;
        width: 16px;
        height: 16px;
        box-shadow: 0 0 0 6px var(--color-gray-light);
    }
    
    .step-content {
        margin-left: 3.5rem;
        padding: 1.25rem;
        width: calc(100% - 3.5rem);
        gap: 1rem;
    }
    
    .step-number-circle,
    .step-icon-wrapper {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .step-icon {
        width: 20px;
        height: 20px;
    }
    
    .step-number {
        font-size: 1.25rem;
    }
    
    .step-text h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* ============================================
   BLOG
   ============================================ */

@media (max-width: 768px) {
    .blog-hero {
        padding: 2.5rem 0;
        margin-bottom: 2rem;
    }
    
    .blog-hero .page-title {
        font-size: 1.75rem;
    }
    
    .blog-hero .page-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .blog-filters {
        flex-direction: column;
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .filter-categories {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding-bottom: 0.5rem;
    }
    
    .filter-categories::-webkit-scrollbar {
        height: 4px;
    }
    
    .filter-categories::-webkit-scrollbar-thumb {
        background: var(--color-primary);
        border-radius: 2px;
    }
    
    .blog-search {
        width: 100%;
    }
    
    .blog-search form {
        flex-direction: column;
        width: 100%;
    }
    
    .blog-search input {
        width: 100%;
        min-width: auto;
    }
    
    .blog-search .btn {
        width: 100%;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .post-card-image {
        height: 200px;
    }
    
    .post-card-content {
        padding: 1.5rem;
    }
    
    .post-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .post-card-link {
        width: 100%;
        justify-content: center;
    }
    
    /* Post Individual */
    .post-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .post-main {
        padding: 2rem 1.5rem;
    }
    
    .entry-title {
        font-size: 1.75rem;
    }
    
    .entry-meta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .post-sidebar {
        order: -1;
    }
    
    .widget {
        padding: 1.5rem;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .recommended-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-hero .page-title {
        font-size: 1.5rem;
    }
    
    .post-card-content {
        padding: 1.25rem;
    }
    
    .post-main {
        padding: 1.5rem 1rem;
    }
    
    .entry-title {
        font-size: 1.5rem;
    }
    
    .widget {
        padding: 1.25rem;
    }
}

/* ============================================
   TRATAMENTOS
   ============================================ */

@media (max-width: 768px) {
    .tratamentos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tratamentos-filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    /* Tratamento Detalhe */
    .tratamento-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tratamento-hero-image {
        order: -1;
    }
    
    .tratamento-title {
        font-size: 2rem;
    }
    
    .tratamento-subtitle {
        font-size: 1.1rem;
    }
    
    .tratamento-info-grid {
        grid-template-columns: 1fr;
    }
    
    .tratamento-cta-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .sintomas-grid {
        grid-template-columns: 1fr;
    }
    
    .tratamentos-carousel-wrapper,
    .videos-carousel-wrapper {
        padding: 0 1rem;
    }
    
    .tratamentos-carousel,
    .videos-carousel {
        overflow: visible;
    }
}

@media (max-width: 480px) {
    .tratamento-title {
        font-size: 1.75rem;
    }
    
    .tratamento-subtitle {
        font-size: 1rem;
    }
}

/* ============================================
   CURSOS
   ============================================ */

@media (max-width: 768px) {
    .cursos-hero {
        padding: 2.5rem 0;
    }
    
    .cursos-hero .page-title {
        font-size: 1.75rem;
    }
    
    .cursos-hero .page-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cursos-section {
        padding: 3rem 0;
    }
    
    .cursos-empty {
        padding: 3rem 1.5rem;
    }
    
    .cursos-empty .empty-state h3 {
        font-size: 1.5rem;
    }
    
    .cursos-empty .empty-state p {
        font-size: 1rem;
    }
    
    .cursos-cta-section {
        padding: 3rem 0;
    }
    
    .cursos-cta-section .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cursos-cta-section .cta-content p {
        font-size: 1rem;
    }
    
    /* Cursos Grid */
    .cursos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Curso Detalhe */
    .curso-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .curso-hero-image {
        order: -1;
    }
    
    .curso-title {
        font-size: 2rem;
    }
    
    .curso-subtitle {
        font-size: 1.1rem;
    }
    
    .curso-content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .curso-main-content {
        padding: 2rem 1.5rem;
    }
    
    .curso-sidebar {
        order: -1;
    }
}

@media (max-width: 480px) {
    .cursos-hero .page-title {
        font-size: 1.5rem;
    }
    
    .cursos-empty .empty-state svg {
        width: 60px;
        height: 60px;
    }
    
    .cursos-empty .empty-state h3 {
        font-size: 1.25rem;
    }
    
    .cursos-cta-section .cta-content h2 {
        font-size: 1.5rem;
    }
    
    /* Cursos Grid Mobile */
    .cursos-grid {
        gap: 1.5rem;
    }
    
    .curso-card-content {
        padding: 1.5rem;
    }
    
    /* Curso Detalhe Mobile */
    .curso-title {
        font-size: 1.75rem;
    }
    
    .curso-subtitle {
        font-size: 1rem;
    }
    
    .curso-main-content {
        padding: 1.5rem 1rem;
    }
    
    .curso-main-content h2 {
        font-size: 1.5rem;
    }
    
    .curso-main-content h3 {
        font-size: 1.25rem;
    }
    
    .curso-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .curso-cta-box h3 {
        font-size: 1.5rem;
    }
    
    /* Modal de Cursos */
    .curso-modal {
        padding: 1rem;
    }
    
    .curso-modal-content {
        max-height: 95vh;
    }
    
    .curso-modal-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .curso-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .curso-interesse-form {
        padding: 1.5rem;
    }
}

/* ============================================
   VÍDEOS
   ============================================ */

@media (max-width: 768px) {
    .videos-hero {
        padding: 2.5rem 0;
    }
    
    .videos-filters-section {
        padding: 1.5rem 0;
    }
    
    .videos-filter-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .videos-category-select {
        width: 100%;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-card {
        width: 100%;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .videos-pagination {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .pagination-btn {
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .video-thumbnail {
        height: 180px;
    }
    
    .video-card-content {
        padding: 1rem;
    }
}

/* ============================================
   RECURSOS
   ============================================ */

@media (max-width: 768px) {
    .recursos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Landing Pages */
    .landing-hero {
        padding: 2rem 0;
    }
    
    .landing-hero h1 {
        font-size: 2rem !important;
    }
    
    .landing-hero h2 {
        font-size: 1.5rem !important;
    }
    
    .landing-about {
        grid-template-columns: 1fr !important;
    }
    
    .problems-grid {
        grid-template-columns: 1fr !important;
    }
    
    .download-modal {
        padding: 1.5rem;
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .modal-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .landing-hero h1 {
        font-size: 1.75rem !important;
    }
    
    .landing-hero h2 {
        font-size: 1.25rem !important;
    }
    
    .download-modal {
        padding: 1rem;
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
}

/* ============================================
   CONTATO
   ============================================ */

@media (max-width: 768px) {
    .contato-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contato-form {
        order: 2;
    }
    
    .contato-info {
        order: 1;
    }
    
    .contato-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SOBRE
   ============================================ */

@media (max-width: 768px) {
    .sobre-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sobre-photo {
        order: -1;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 3rem;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .timeline-content {
        margin-left: 0;
        margin-right: 0;
    }
    
    .pilares-grid,
    .conquistas-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ESPECIAIS
   ============================================ */

@media (max-width: 768px) {
    .especial-hero {
        padding: 2rem 0;
    }
    
    .especial-hero h1 {
        font-size: 2rem;
    }
    
    .especial-content-grid {
        grid-template-columns: 1fr;
    }
    
    .especial-stats {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .especial-hero h1 {
        font-size: 1.75rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-column {
        min-width: 0;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-column:first-child {
        grid-column: 1;
    }
}

/* ============================================
   COMPONENTES GERAIS
   ============================================ */

@media (max-width: 768px) {
    /* Botões */
    .btn {
        min-height: 44px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Formulários */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        min-height: 44px;
        font-size: 16px; /* Evita zoom no iOS */
        padding: 0.75rem;
    }
    
    textarea {
        min-height: 120px;
    }
    
    /* Modais */
    .modal {
        padding: 1rem;
    }
    
    .modal-content {
        max-width: calc(100% - 2rem);
        margin: 1rem;
    }
    
    /* Cards */
    .card {
        padding: 1.5rem;
    }
    
    /* Carousels */
    .carousel-btn {
        width: 44px;
        height: 44px;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    /* Breadcrumbs */
    .breadcrumbs {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .breadcrumb-list {
        gap: 0.25rem;
    }
    
    /* Tabelas */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 2.5rem 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   PÁGINAS LEGAIS
   ============================================ */

@media (max-width: 768px) {
    .legal-hero {
        padding: 2rem 0;
    }
    
    .legal-hero .page-title {
        font-size: 1.75rem;
    }
    
    .legal-hero .page-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.25rem;
    }
    
    .legal-content p,
    .legal-content li {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* ============================================
   UTILITÁRIOS ESPECÍFICOS
   ============================================ */

/* Esconder em mobile */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Mostrar apenas em mobile */
.show-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .show-mobile {
        display: block !important;
    }
}

/* Text alignment mobile */
@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center;
    }
}

