/* Estilos responsivos para área do vendedor */

@media (max-width: 991px) {
    .vendedor-hero-section {
        padding-top: 60px;
        min-height: auto;
    }
    
    .hero-image {
        height: 300px;
        margin-top: 40px;
    }
    
    .floating-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-badge {
        margin: 5px;
        width: 100%;
        justify-content: center;
    }
    
    .beneficio-item {
        margin-bottom: 20px;
    }
    
    .stats-card {
        margin-bottom: 20px;
    }
    
    .testimonial-card {
        margin: 10px 0;
    }
    
    .calculator-card {
        padding: 20px;
    }
    
    .numero-destaque {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .vendedor-hero-section {
        padding-top: 40px;
    }
    
    h1.display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .step-item {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .step-line {
        display: none;
    }
}

/* Estilos para o botão de menu móvel (que queremos remover) */
.mobile-menu-toggle {
    display: none !important;
}

.mobile-menu-toggle i {
    display: none !important;
} 