/* =====================
   AJUSTE FINO DE ESPAÇAMENTOS MOBILE - V2
   Redução agressiva de espaços verticais
   ===================== */

@media (max-width: 768px) {

    /* 1. HERO: Aproximar Imagem do Texto de Cima */
    .hero-container {
        gap: 0.5rem !important;
        /* Mínimo espaço possível */
        padding-top: 4rem !important;
        /* Espaço pro Header */
    }

    .hero-left {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .hero-right,
    .hero-image {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Aproximar texto "Descubra Mais" do fundo da imagem */
    .hero-scroll-indicator {
        bottom: 1rem !important;
    }


    /* 2. OFERTA: Aproximar "OFERTA" do texto anterior */
    /* Remove espaço do fim da seção anterior */
    section:has(+ .offer-section),
    .quote-section {
        padding-bottom: 1rem !important;
        margin-bottom: 0 !important;
    }

    /* Remove espaço do topo da seção de oferta */
    .offer-section,
    #oferta {
        padding-top: 1rem !important;
        /* Bem colado */
        margin-top: 0 !important;
    }

    .section-label {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}