/* ============================================
   CSS Responsivo
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-content,
    .autoridade-content,
    .como-funciona-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image,
    .autoridade-image,
    .como-funciona-image {
        height: 400px;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile */
    .header-content {
        min-height: 70px;
        padding: 0.75rem 0;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .menu-desktop {
        display: none;
    }
    
    .btn-cta-header {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .hero-image {
        height: 300px;
    }
    
    /* Seções Mobile */
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .autoridade-image,
    .como-funciona-image {
        height: 300px;
    }
    
    /* Cards Mobile */
    .areas-grid,
    .artigos-grid {
        grid-template-columns: 1fr;
    }
    
    .area-card,
    .artigo-card {
        padding: 2rem;
    }
    
    /* Passos Mobile */
    .passo-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .passo-numero {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Diferenciais Mobile */
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA Mobile */
    .cta-final {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .btn-cta-whatsapp {
        width: 100%;
        justify-content: center;
    }
    
    /* WhatsApp Float Mobile */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        width: 24px;
        height: 24px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Formulário Mobile */
    .form-container {
        padding: 2rem 1.5rem;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .area-card,
    .artigo-card {
        padding: 1.5rem;
    }
}
