/**
 * Adriana Santos Miranda - Despachante Veicular
 * Estilos responsivos do site
 */

/* ===== Tablets (992px e abaixo) ===== */
@media screen and (max-width: 992px) {
    /* Header */
    .logo-text {
        font-size: 1.3rem;
    }
    
    .header-contact {
        display: none;
    }
    
    /* Sobre */
    .sobre-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .sobre-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Serviços */
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Depoimentos */
    .depoimento-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .depoimento-image {
        margin-bottom: 1.5rem;
    }
    
    /* Hero */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
}

/* ===== Mobile (768px e abaixo) ===== */
@media screen and (max-width: 768px) {
    /* Header */
    .site-header {
        position: relative;
    }
    
    .header-inner {
        flex-wrap: wrap;
    }
    
    .logo {
        flex: 1;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .main-nav {
        flex-basis: 100%;
        display: none;
        margin-top: 1rem;
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav .nav-list {
        flex-direction: column;
    }
    
    .main-nav .nav-list li {
        margin: 0;
        border-bottom: 1px solid var(--cor-borda);
    }
    
    .main-nav .nav-list a {
        display: block;
        padding: 0.8rem 0;
    }
    
    /* Hero */
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    /* Serviços */
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .servico-item {
        max-width: 450px;
        margin: 0 auto;
    }
    
    /* Contato */
    .contato-content {
        flex-direction: column;
    }
    
    .contato-info, .contato-form {
        width: 100%;
    }
    
    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social a:first-child {
        margin-left: 0;
    }
    
    /* Sobre */
    .sobre-valores li {
        flex: 1 0 50%;
    }
    
    /* Preloader */
    .spinner {
        width: 40px;
        height: 40px;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        right: 20px;
        bottom: 20px;
    }
    
    /* Cookie Notice */
    .cookie-notice .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* ===== Mobile pequeno (576px e abaixo) ===== */
@media screen and (max-width: 576px) {
    /* Geral */
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Sobre */
    .info-item {
        flex: 1 0 100%;
        margin-right: 0;
    }
    
    .sobre-valores li {
        flex: 1 0 100%;
    }
    
    /* Depoimentos */
    .depoimento-content {
        padding: 1.5rem;
    }
    
    .depoimento-image {
        width: 100px;
        height: 100px;
    }
    
    /* Política e Termos */
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    /* Hero */
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    /* Botões */
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
} 