/* Estilos para a seção de atacadistas */
.atacadistas {
    padding: 80px 0;
    background-color: #f4f8ff;
    position: relative;
    overflow: hidden;
}

.atacadistas::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 211, 1, 0.1) 0%, rgba(255, 211, 1, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.atacadistas::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(55, 107, 255, 0.1) 0%, rgba(55, 107, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.atacadistas .container {
    position: relative;
    z-index: 2;
}

.atacadistas .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.atacadistas .section-title h2 {
    color: #222;
    font-size: 2.4rem;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
}

.atacadistas-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.atacadista-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    border-bottom: 4px solid #FFD301;
}

.atacadista-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(55, 107, 255, 0.15);
}

.atacadista-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 211, 1, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.atacadista-icon i {
    font-size: 2.5rem;
    color: #376BFF;
}

.atacadista-card h3 {
    color: #222;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.atacadista-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.atacadistas-cta {
    text-align: center;
    margin-top: 20px;
}

.atacadistas-cta .btn {
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Media Queries */
@media (max-width: 992px) {
    .atacadistas-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .atacadistas .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .atacadistas {
        padding: 60px 0;
    }
    
    .atacadistas .section-title h2 {
        font-size: 1.8rem;
    }
    
    .atacadista-icon {
        width: 70px;
        height: 70px;
    }
    
    .atacadista-icon i {
        font-size: 2rem;
    }
    
    .atacadista-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .atacadistas .section-title h2 {
        font-size: 1.5rem;
    }
    
    .atacadista-card {
        padding: 20px;
    }
    
    .atacadistas-cta .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
} 